Leftwards Arrow-tail

Shortcodes

Copy useful codes for leftwards arrow-tail symbol ⤙ to use in websites, apps, blogs, and docs.

Unicode
U+2919
HTML Code
⤙
HEX Code
⤙
CSS Code
\2919
JS/JSON
\u2919
Unix/C/PHP/JAVA
0x2919
URL-encode
%E2%A4%99

Customize Leftwards Arrow-tail

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

  

How to use Leftwards Arrow-tail Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⤙</span>
HTML Code:
<span>&#10521;</span>
HEX Code:
<span>&#x2919;</span>

Add with CSS

.leftwards-arrow-tail::before {
  content: '\\2919';
}

Set it in JavaScript

document.querySelector('.leftwards-arrow-tail').textContent = '⤙';
copied