North West Arrow With Hook

Shortcodes

Copy useful codes for north west arrow with hook symbol ⤣ to use in websites, apps, blogs, and docs.

Unicode
U+2923
HTML Code
⤣
HEX Code
⤣
CSS Code
\2923
JS/JSON
\u2923
Unix/C/PHP/JAVA
0x2923
URL-encode
%E2%A4%A3

Customize North West Arrow With Hook

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

  

How to use North West Arrow With Hook Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⤣</span>
HTML Code:
<span>&#10531;</span>
HEX Code:
<span>&#x2923;</span>

Add with CSS

.north-west-arrow-with-hook::before {
  content: '\\2923';
}

Set it in JavaScript

document.querySelector('.north-west-arrow-with-hook').textContent = '⤣';
copied