Right Angle

Shortcodes

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

Unicode
U+221F
Alt Code
28
HTML Code
∟
HEX Code
∟
CSS Code
\221F
JS/JSON
\u221F
Unix/C/PHP/JAVA
0x221F
URL-encode
%E2%88%9F

Customize Right Angle

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

  

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

Insert in HTML

1. Direct symbol:
<span>∟</span>
HTML Code:
<span>&#8735;</span>
HEX Code:
<span>&#x221F;</span>

Add with CSS

.right-angle::before {
  content: '\\221F';
}

Set it in JavaScript

document.querySelector('.right-angle').textContent = '∟';
copied