Black Leftwards Equilateral Arrowhead

Shortcodes

Copy useful codes for black leftwards equilateral arrowhead symbol ⮜ to use in websites, apps, blogs, and docs.

Unicode
U+2B9C
HTML Code
⮜
HEX Code
⮜
CSS Code
\2B9C
JS/JSON
\u2B9C
Unix/C/PHP/JAVA
0x2B9C
URL-encode
%E2%AE%9C

Customize Black Leftwards Equilateral Arrowhead

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

  

How to use Black Leftwards Equilateral Arrowhead Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⮜</span>
HTML Code:
<span>&#11164;</span>
HEX Code:
<span>&#x2B9C;</span>

Add with CSS

.black-leftwards-equilateral-arrowhead::before {
  content: '\\2B9C';
}

Set it in JavaScript

document.querySelector('.black-leftwards-equilateral-arrowhead').textContent = '⮜';
copied