Slanted North Arrow With Horizontal Tail

Shortcodes

Copy useful codes for slanted north arrow with horizontal tail symbol ⭜ to use in websites, apps, blogs, and docs.

Unicode
U+2B5C
HTML Code
⭜
HEX Code
⭜
CSS Code
\2B5C
JS/JSON
\u2B5C
Unix/C/PHP/JAVA
0x2B5C
URL-encode
%E2%AD%9C

Customize Slanted North Arrow With Horizontal Tail

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

  

How to use Slanted North Arrow With Horizontal Tail Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⭜</span>
HTML Code:
<span>&#11100;</span>
HEX Code:
<span>&#x2B5C;</span>

Add with CSS

.slanted-north-arrow-with-horizontal-tail::before {
  content: '\\2B5C';
}

Set it in JavaScript

document.querySelector('.slanted-north-arrow-with-horizontal-tail').textContent = '⭜';
copied