Right Triangle

Shortcodes

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

Unicode
U+22BF
HTML Code
⊿
HEX Code
⊿
CSS Code
\22BF
JS/JSON
\u22BF
Unix/C/PHP/JAVA
0x22BF
URL-encode
%E2%8A%BF

Customize Right Triangle

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

  

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

Insert in HTML

1. Direct symbol:
<span>⊿</span>
HTML Code:
<span>&#8895;</span>
HEX Code:
<span>&#x22BF;</span>

Add with CSS

.right-triangle::before {
  content: '\\22BF';
}

Set it in JavaScript

document.querySelector('.right-triangle').textContent = '⊿';
copied