Short Slanted North Arrow

Shortcodes

Copy useful codes for short slanted north arrow symbol ⭎ to use in websites, apps, blogs, and docs.

Unicode
U+2B4E
HTML Code
⭎
HEX Code
⭎
CSS Code
\2B4E
JS/JSON
\u2B4E
Unix/C/PHP/JAVA
0x2B4E
URL-encode
%E2%AD%8E

Customize Short Slanted North Arrow

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

  

How to use Short Slanted North Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⭎</span>
HTML Code:
<span>&#11086;</span>
HEX Code:
<span>&#x2B4E;</span>

Add with CSS

.short-slanted-north-arrow::before {
  content: '\\2B4E';
}

Set it in JavaScript

document.querySelector('.short-slanted-north-arrow').textContent = '⭎';
copied