White Right-pointing Triangle

Shortcodes

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

Unicode
U+25B7
HTML Code
▷
HEX Code
▷
CSS Code
\25B7
JS/JSON
\u25B7
Unix/C/PHP/JAVA
0x25B7
URL-encode
%E2%96%B7

Customize White Right-pointing Triangle

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

  

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

Insert in HTML

1. Direct symbol:
<span>▷</span>
HTML Code:
<span>&#9655;</span>
HEX Code:
<span>&#x25B7;</span>

Add with CSS

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

Set it in JavaScript

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