Acute Angle

Shortcodes

Copy useful codes for acute angle symbol ⦟ to use in websites, apps, blogs, and docs.

Unicode
U+299F
HTML Code
⦟
HEX Code
⦟
CSS Code
\299F
JS/JSON
\u299F
Unix/C/PHP/JAVA
0x299F
URL-encode
%E2%A6%9F

Customize Acute Angle

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

  

How to use Acute Angle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⦟</span>
HTML Code:
<span>&#10655;</span>
HEX Code:
<span>&#x299F;</span>

Add with CSS

.acute-angle::before {
  content: '\\299F';
}

Set it in JavaScript

document.querySelector('.acute-angle').textContent = '⦟';
copied