Black Left-pointing Small Triangle

Shortcodes

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

Unicode
U+25C2
HTML Code
◂
HEX Code
◂
CSS Code
\25C2
JS/JSON
\u25C2
Unix/C/PHP/JAVA
0x25C2
URL-encode
%E2%97%82

Customize Black Left-pointing Small Triangle

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

  

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

Insert in HTML

1. Direct symbol:
<span>◂</span>
HTML Code:
<span>&#9666;</span>
HEX Code:
<span>&#x25C2;</span>

Add with CSS

.black-left-pointing-small-triangle::before {
  content: '\\25C2';
}

Set it in JavaScript

document.querySelector('.black-left-pointing-small-triangle').textContent = '◂';
copied