Right Angle With Arc

Shortcodes

Copy useful codes for right angle with arc symbol ⊾ to use in websites, apps, blogs, and docs.

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

Customize Right Angle With Arc

Customize ⊾, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Right Angle With Arc Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⊾</span>
HTML Code:
<span>&#8894;</span>
HEX Code:
<span>&#x22BE;</span>

Add with CSS

.right-angle-with-arc::before {
  content: '\\22BE';
}

Set it in JavaScript

document.querySelector('.right-angle-with-arc').textContent = '⊾';
copied