Measured Angle Opening Left

Shortcodes

Copy useful codes for measured angle opening left symbol ⦛ to use in websites, apps, blogs, and docs.

Unicode
U+299B
HTML Code
⦛
HEX Code
⦛
CSS Code
\299B
JS/JSON
\u299B
Unix/C/PHP/JAVA
0x299B
URL-encode
%E2%A6%9B

Customize Measured Angle Opening Left

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

  

How to use Measured Angle Opening Left Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⦛</span>
HTML Code:
<span>&#10651;</span>
HEX Code:
<span>&#x299B;</span>

Add with CSS

.measured-angle-opening-left::before {
  content: '\\299B';
}

Set it in JavaScript

document.querySelector('.measured-angle-opening-left').textContent = '⦛';
copied