Slanted North Arrow With Hooked Head

Shortcodes

Copy useful codes for slanted north arrow with hooked head symbol ⭚ to use in websites, apps, blogs, and docs.

Unicode
U+2B5A
HTML Code
⭚
HEX Code
⭚
CSS Code
\2B5A
JS/JSON
\u2B5A
Unix/C/PHP/JAVA
0x2B5A
URL-encode
%E2%AD%9A

Customize Slanted North Arrow With Hooked Head

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

  

How to use Slanted North Arrow With Hooked Head Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⭚</span>
HTML Code:
<span>&#11098;</span>
HEX Code:
<span>&#x2B5A;</span>

Add with CSS

.slanted-north-arrow-with-hooked-head::before {
  content: '\\2B5A';
}

Set it in JavaScript

document.querySelector('.slanted-north-arrow-with-hooked-head').textContent = '⭚';
copied