Three Dimensional Angle

Shortcodes

Copy and paste codes for Three Dimensional Angle symbol ⟀ to use in your websites, apps, blogs, and more.

Unicode
U+27C0
HTML Code
⟀
HEX Code
⟀
CSS Code
\27C0
JS/JSON
\u27C0
Unix/C/PHP/JAVA
0x27C0
URL-encode
%E2%9F%80
copied

Customize Three Dimensional Angle Symbol

Customize ⟀ symbol as you like and download Three Dimensional 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 Three Dimensional Angle symbol in HTML, CSS, and JS?

Insert ⟀ Three Dimensional Angle using HTML

1. Copy-paste Three Dimensional Angle directly:
<span>⟀</span>
2. HTML Decimal Code:
<span>&#10176;</span>
3. Hexadecimal Code:
<span>&#x27C0;</span>
Preview:

Add Three Dimensional Angle symbol with CSS

.three-dimensional-angle::before {
    content: '\\27C0';
}
Preview: Three Dimensional Angle

Three Dimensional Angle JavaScript Code

1. Direct Symbol:
document.querySelector('.three-dimensional-angle').textContent = '⟀';
2. Unicode Escape for ⟀:
document.querySelector('.three-dimensional-angle').textContent = '\u27C0';
Preview: