Black Upwards Equilateral Arrowhead

Shortcodes

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

Unicode
U+2B9D
HTML Code
⮝
HEX Code
⮝
CSS Code
\2B9D
JS/JSON
\u2B9D
Unix/C/PHP/JAVA
0x2B9D
URL-encode
%E2%AE%9D

Customize Black Upwards Equilateral Arrowhead

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

  

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

Insert in HTML

1. Direct symbol:
<span>⮝</span>
HTML Code:
<span>&#11165;</span>
HEX Code:
<span>&#x2B9D;</span>

Add with CSS

.black-upwards-equilateral-arrowhead::before {
  content: '\\2B9D';
}

Set it in JavaScript

document.querySelector('.black-upwards-equilateral-arrowhead').textContent = '⮝';
copied