North East White Arrow

Shortcodes

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

Unicode
U+2B00
HTML Code
⬀
HEX Code
⬀
CSS Code
\2B00
JS/JSON
\u2B00
Unix/C/PHP/JAVA
0x2B00
URL-encode
%E2%AC%80

Customize North East White Arrow

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

  

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

Insert in HTML

1. Direct symbol:
<span>⬀</span>
HTML Code:
<span>&#11008;</span>
HEX Code:
<span>&#x2B00;</span>

Add with CSS

.north-east-white-arrow::before {
  content: '\\2B00';
}

Set it in JavaScript

document.querySelector('.north-east-white-arrow').textContent = '⬀';
copied