White Up-pointing Small Triangle

Shortcodes

Copy useful codes for white up-pointing small triangle symbol ▵ to use in websites, apps, blogs, and docs.

Unicode
U+25B5
HTML Code
▵
HEX Code
▵
CSS Code
\25B5
JS/JSON
\u25B5
Unix/C/PHP/JAVA
0x25B5
URL-encode
%E2%96%B5

Customize White Up-pointing Small Triangle

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

  

How to use White Up-pointing Small Triangle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>▵</span>
HTML Code:
<span>&#9653;</span>
HEX Code:
<span>&#x25B5;</span>

Add with CSS

.white-up-pointing-small-triangle::before {
  content: '\\25B5';
}

Set it in JavaScript

document.querySelector('.white-up-pointing-small-triangle').textContent = '▵';
copied