South West Arrow With Hook

Shortcodes

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

Unicode
U+2926
HTML Code
⤦
HEX Code
⤦
CSS Code
\2926
JS/JSON
\u2926
Unix/C/PHP/JAVA
0x2926
URL-encode
%E2%A4%A6

Customize South West Arrow With Hook

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

  

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

Insert in HTML

1. Direct symbol:
<span>⤦</span>
HTML Code:
<span>&#10534;</span>
HEX Code:
<span>&#x2926;</span>

Add with CSS

.south-west-arrow-with-hook::before {
  content: '\\2926';
}

Set it in JavaScript

document.querySelector('.south-west-arrow-with-hook').textContent = '⤦';
copied