Rightwards Arrow With Hook

Shortcodes

Copy useful codes for rightwards arrow with hook symbol ↪ to use in websites, apps, blogs, and docs.

Unicode
U+21AA
HTML Code
↪
HEX Code
↪
CSS Code
\21AA
JS/JSON
\u21AA
Unix/C/PHP/JAVA
0x21AA
URL-encode
%E2%86%AA

Customize Rightwards Arrow With Hook

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

  

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

Insert in HTML

1. Direct symbol:
<span>↪</span>
HTML Code:
<span>&#8618;</span>
HEX Code:
<span>&#x21AA;</span>

Add with CSS

.rightwards-arrow-with-hook::before {
  content: '\\21AA';
}

Set it in JavaScript

document.querySelector('.rightwards-arrow-with-hook').textContent = '↪';
copied