Circled Perpendicular

Shortcodes

Copy and paste codes for Circled Perpendicular symbol ⦹ to use in your websites, apps, blogs, and more.

Unicode
U+29B9
HTML Code
⦹
HEX Code
⦹
CSS Code
\29B9
JS/JSON
\u29B9
Unix/C/PHP/JAVA
0x29B9
URL-encode
%E2%A6%B9
copied

Customize Circled Perpendicular Symbol

Customize ⦹ symbol as you like and download Circled Perpendicular 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 Circled Perpendicular symbol in HTML, CSS, and JS?

Insert ⦹ Circled Perpendicular using HTML

1. Copy-paste Circled Perpendicular directly:
<span>⦹</span>
2. HTML Decimal Code:
<span>&#10681;</span>
3. Hexadecimal Code:
<span>&#x29B9;</span>
Preview:

Add Circled Perpendicular symbol with CSS

.circled-perpendicular::before {
    content: '\\29B9';
}
Preview: Circled Perpendicular

Circled Perpendicular JavaScript Code

1. Direct Symbol:
document.querySelector('.circled-perpendicular').textContent = '⦹';
2. Unicode Escape for ⦹:
document.querySelector('.circled-perpendicular').textContent = '\u29B9';
Preview: