Black Rightwards Equilateral Arrowhead

Shortcodes

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

Unicode
U+2B9E
HTML Code
⮞
HEX Code
⮞
CSS Code
\2B9E
JS/JSON
\u2B9E
Unix/C/PHP/JAVA
0x2B9E
URL-encode
%E2%AE%9E

Customize Black Rightwards Equilateral Arrowhead

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

  

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

Insert in HTML

1. Direct symbol:
<span>⮞</span>
HTML Code:
<span>&#11166;</span>
HEX Code:
<span>&#x2B9E;</span>

Add with CSS

.black-rightwards-equilateral-arrowhead::before {
  content: '\\2B9E';
}

Set it in JavaScript

document.querySelector('.black-rightwards-equilateral-arrowhead').textContent = '⮞';
copied