North East Black Arrow

Shortcodes

Copy useful codes for north east black arrow symbol ⬈ to use in websites, apps, blogs, and docs.

Unicode
U+2B08
HTML Code
⬈
HEX Code
⬈
CSS Code
\2B08
JS/JSON
\u2B08
Unix/C/PHP/JAVA
0x2B08
URL-encode
%E2%AC%88

Customize North East Black Arrow

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

  

How to use North East Black Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⬈</span>
HTML Code:
<span>&#11016;</span>
HEX Code:
<span>&#x2B08;</span>

Add with CSS

.north-east-black-arrow::before {
  content: '\\2B08';
}

Set it in JavaScript

document.querySelector('.north-east-black-arrow').textContent = '⬈';
copied