White Right-pointing Small Triangle

Shortcodes

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

Unicode
U+25B9
HTML Code
▹
HEX Code
▹
CSS Code
\25B9
JS/JSON
\u25B9
Unix/C/PHP/JAVA
0x25B9
URL-encode
%E2%96%B9

Customize White Right-pointing Small Triangle

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

  

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

Insert in HTML

1. Direct symbol:
<span>▹</span>
HTML Code:
<span>&#9657;</span>
HEX Code:
<span>&#x25B9;</span>

Add with CSS

.white-right-pointing-small-triangle::before {
  content: '\\25B9';
}

Set it in JavaScript

document.querySelector('.white-right-pointing-small-triangle').textContent = '▹';
copied