North East Arrow With Hook

Shortcodes

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

Unicode
U+2924
HTML Code
⤤
HEX Code
⤤
CSS Code
\2924
JS/JSON
\u2924
Unix/C/PHP/JAVA
0x2924
URL-encode
%E2%A4%A4

Customize North East Arrow With Hook

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

  

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

Insert in HTML

1. Direct symbol:
<span>⤤</span>
HTML Code:
<span>&#10532;</span>
HEX Code:
<span>&#x2924;</span>

Add with CSS

.north-east-arrow-with-hook::before {
  content: '\\2924';
}

Set it in JavaScript

document.querySelector('.north-east-arrow-with-hook').textContent = '⤤';
copied