White Left-pointing Small Triangle

Shortcodes

Copy useful codes for white left-pointing small triangle symbol ◃ to use in websites, apps, blogs, and docs.

Unicode
U+25C3
HTML Code
◃
HEX Code
◃
CSS Code
\25C3
JS/JSON
\u25C3
Unix/C/PHP/JAVA
0x25C3
URL-encode
%E2%97%83

Customize White Left-pointing Small Triangle

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

  

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

Insert in HTML

1. Direct symbol:
<span>◃</span>
HTML Code:
<span>&#9667;</span>
HEX Code:
<span>&#x25C3;</span>

Add with CSS

.white-left-pointing-small-triangle::before {
  content: '\\25C3';
}

Set it in JavaScript

document.querySelector('.white-left-pointing-small-triangle').textContent = '◃';
copied