Leftwards Two Headed Arrow

Shortcodes

Copy useful codes for leftwards two headed arrow symbol ↞ to use in websites, apps, blogs, and docs.

Unicode
U+219E
HTML Code
↞
HEX Code
↞
CSS Code
\219E
JS/JSON
\u219E
Unix/C/PHP/JAVA
0x219E
URL-encode
%E2%86%9E

Customize Leftwards Two Headed Arrow

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

  

How to use Leftwards Two Headed Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>↞</span>
HTML Code:
<span>&#8606;</span>
HEX Code:
<span>&#x219E;</span>

Add with CSS

.leftwards-two-headed-arrow::before {
  content: '\\219E';
}

Set it in JavaScript

document.querySelector('.leftwards-two-headed-arrow').textContent = '↞';
copied