White Up-pointing Triangle With Dot

Shortcodes

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

Unicode
U+25EC
HTML Code
◬
HEX Code
◬
CSS Code
\25EC
JS/JSON
\u25EC
Unix/C/PHP/JAVA
0x25EC
URL-encode
%E2%97%AC

Customize White Up-pointing Triangle With Dot

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

  

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

Insert in HTML

1. Direct symbol:
<span>◬</span>
HTML Code:
<span>&#9708;</span>
HEX Code:
<span>&#x25EC;</span>

Add with CSS

.white-up-pointing-triangle-with-dot::before {
  content: '\\25EC';
}

Set it in JavaScript

document.querySelector('.white-up-pointing-triangle-with-dot').textContent = '◬';
copied