Turned Angle

Shortcodes

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

Unicode
U+29A2
HTML Code
⦢
HEX Code
⦢
CSS Code
\29A2
JS/JSON
\u29A2
Unix/C/PHP/JAVA
0x29A2
URL-encode
%E2%A6%A2
copied

Customize Turned Angle Symbol

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

Insert ⦢ Turned Angle using HTML

1. Copy-paste Turned Angle directly:
<span>⦢</span>
2. HTML Decimal Code:
<span>&#10658;</span>
3. Hexadecimal Code:
<span>&#x29A2;</span>
Preview:

Add Turned Angle symbol with CSS

.turned-angle::before {
    content: '\\29A2';
}
Preview: Turned Angle

Turned Angle JavaScript Code

1. Direct Symbol:
document.querySelector('.turned-angle').textContent = '⦢';
2. Unicode Escape for ⦢:
document.querySelector('.turned-angle').textContent = '\u29A2';
Preview: