Measured Right Angle With Dot

Shortcodes

Copy useful codes for measured right angle with dot symbol ⦝ to use in websites, apps, blogs, and docs.

Unicode
U+299D
HTML Code
⦝
HEX Code
⦝
CSS Code
\299D
JS/JSON
\u299D
Unix/C/PHP/JAVA
0x299D
URL-encode
%E2%A6%9D

Customize Measured Right Angle With Dot

Customize ⦝, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Measured Right Angle With Dot Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⦝</span>
HTML Code:
<span>&#10653;</span>
HEX Code:
<span>&#x299D;</span>

Add with CSS

.measured-right-angle-with-dot::before {
  content: '\\299D';
}

Set it in JavaScript

document.querySelector('.measured-right-angle-with-dot').textContent = '⦝';
copied