White Up-pointing Triangle

Shortcodes

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

Unicode
U+25B3
HTML Code
△
HEX Code
△
CSS Code
\25B3
JS/JSON
\u25B3
Unix/C/PHP/JAVA
0x25B3
URL-encode
%E2%96%B3

Customize White Up-pointing Triangle

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

  

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

Insert in HTML

1. Direct symbol:
<span>△</span>
HTML Code:
<span>&#9651;</span>
HEX Code:
<span>&#x25B3;</span>

Add with CSS

.white-up-pointing-triangle::before {
  content: '\\25B3';
}

Set it in JavaScript

document.querySelector('.white-up-pointing-triangle').textContent = '△';
copied