Leftwards Double Arrow-tail

Shortcodes

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

Unicode
U+291B
HTML Code
⤛
HEX Code
⤛
CSS Code
\291B
JS/JSON
\u291B
Unix/C/PHP/JAVA
0x291B
URL-encode
%E2%A4%9B

Customize Leftwards Double Arrow-tail

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

  

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

Insert in HTML

1. Direct symbol:
<span>⤛</span>
HTML Code:
<span>&#10523;</span>
HEX Code:
<span>&#x291B;</span>

Add with CSS

.leftwards-double-arrow-tail::before {
  content: '\\291B';
}

Set it in JavaScript

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