Black Up-pointing Small Triangle

Shortcodes

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

Unicode
U+25B4
HTML Code
▴
HEX Code
▴
CSS Code
\25B4
JS/JSON
\u25B4
Unix/C/PHP/JAVA
0x25B4
URL-encode
%E2%96%B4

Customize Black Up-pointing Small Triangle

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

  

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

Insert in HTML

1. Direct symbol:
<span>▴</span>
HTML Code:
<span>&#9652;</span>
HEX Code:
<span>&#x25B4;</span>

Add with CSS

.black-up-pointing-small-triangle::before {
  content: '\\25B4';
}

Set it in JavaScript

document.querySelector('.black-up-pointing-small-triangle').textContent = '▴';
copied