South East Arrow With Hook

Shortcodes

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

Unicode
U+2925
HTML Code
⤥
HEX Code
⤥
CSS Code
\2925
JS/JSON
\u2925
Unix/C/PHP/JAVA
0x2925
URL-encode
%E2%A4%A5

Customize South East Arrow With Hook

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

  

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

Insert in HTML

1. Direct symbol:
<span>⤥</span>
HTML Code:
<span>&#10533;</span>
HEX Code:
<span>&#x2925;</span>

Add with CSS

.south-east-arrow-with-hook::before {
  content: '\\2925';
}

Set it in JavaScript

document.querySelector('.south-east-arrow-with-hook').textContent = '⤥';
copied