White Down-pointing Triangle

Shortcodes

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

Unicode
U+25BD
HTML Code
▽
HEX Code
▽
CSS Code
\25BD
JS/JSON
\u25BD
Unix/C/PHP/JAVA
0x25BD
URL-encode
%E2%96%BD

Customize White Down-pointing Triangle

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

  

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

Insert in HTML

1. Direct symbol:
<span>▽</span>
HTML Code:
<span>&#9661;</span>
HEX Code:
<span>&#x25BD;</span>

Add with CSS

.white-down-pointing-triangle::before {
  content: '\\25BD';
}

Set it in JavaScript

document.querySelector('.white-down-pointing-triangle').textContent = '▽';
copied