Black Down-pointing Small Triangle

Shortcodes

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

Unicode
U+25BE
HTML Code
▾
HEX Code
▾
CSS Code
\25BE
JS/JSON
\u25BE
Unix/C/PHP/JAVA
0x25BE
URL-encode
%E2%96%BE

Customize Black Down-pointing Small Triangle

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

  

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

Insert in HTML

1. Direct symbol:
<span>▾</span>
HTML Code:
<span>&#9662;</span>
HEX Code:
<span>&#x25BE;</span>

Add with CSS

.black-down-pointing-small-triangle::before {
  content: '\\25BE';
}

Set it in JavaScript

document.querySelector('.black-down-pointing-small-triangle').textContent = '▾';
copied