Acute Angle

Shortcodes

Copy and paste codes for Acute Angle symbol ⦟ to use in your websites, apps, blogs, and more.

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

Customize Acute Angle Symbol

Customize ⦟ symbol as you like and download Acute Angle as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Acute Angle symbol in HTML, CSS, and JS?

Insert ⦟ Acute Angle using HTML

1. Copy-paste Acute Angle directly:
<span>⦟</span>
2. HTML Decimal Code:
<span>&#10655;</span>
3. Hexadecimal Code:
<span>&#x299F;</span>
Preview:

Add Acute Angle symbol with CSS

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

Acute Angle JavaScript Code

1. Direct Symbol:
document.querySelector('.acute-angle').textContent = '⦟';
2. Unicode Escape for ⦟:
document.querySelector('.acute-angle').textContent = '\u299F';
Preview: