Backslanted South Arrow With Hooked Tail

Shortcodes

Copy useful codes for backslanted south arrow with hooked tail symbol ⭛ to use in websites, apps, blogs, and docs.

Unicode
U+2B5B
HTML Code
⭛
HEX Code
⭛
CSS Code
\2B5B
JS/JSON
\u2B5B
Unix/C/PHP/JAVA
0x2B5B
URL-encode
%E2%AD%9B

Customize Backslanted South Arrow With Hooked Tail

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

  

How to use Backslanted South Arrow With Hooked Tail Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⭛</span>
HTML Code:
<span>&#11099;</span>
HEX Code:
<span>&#x2B5B;</span>

Add with CSS

.backslanted-south-arrow-with-hooked-tail::before {
  content: '\\2B5B';
}

Set it in JavaScript

document.querySelector('.backslanted-south-arrow-with-hooked-tail').textContent = '⭛';
copied