Right Angle With Arc

Shortcodes

Copy and paste codes for Right Angle With Arc symbol ⊾ to use in your websites, apps, blogs, and more.

Unicode
U+22BE
HTML Code
⊾
HEX Code
⊾
CSS Code
\22BE
JS/JSON
\u22BE
Unix/C/PHP/JAVA
0x22BE
URL-encode
%E2%8A%BE
copied

Customize Right Angle With Arc Symbol

Customize ⊾ symbol as you like and download Right Angle With Arc 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 Right Angle With Arc symbol in HTML, CSS, and JS?

Insert ⊾ Right Angle With Arc using HTML

1. Copy-paste Right Angle With Arc directly:
<span>⊾</span>
2. HTML Decimal Code:
<span>&#8894;</span>
3. Hexadecimal Code:
<span>&#x22BE;</span>
Preview:

Add Right Angle With Arc symbol with CSS

.right-angle-with-arc::before {
    content: '\\22BE';
}
Preview: Right Angle With Arc

Right Angle With Arc JavaScript Code

1. Direct Symbol:
document.querySelector('.right-angle-with-arc').textContent = '⊾';
2. Unicode Escape for ⊾:
document.querySelector('.right-angle-with-arc').textContent = '\u22BE';
Preview: