Leftwards Double Arrow From Bar

Shortcodes

Copy useful codes for leftwards double arrow from bar symbol ⤆ to use in websites, apps, blogs, and docs.

Unicode
U+2906
HTML Code
⤆
HEX Code
⤆
CSS Code
\2906
JS/JSON
\u2906
Unix/C/PHP/JAVA
0x2906
URL-encode
%E2%A4%86

Customize Leftwards Double Arrow From Bar

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

  

How to use Leftwards Double Arrow From Bar Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⤆</span>
HTML Code:
<span>&#10502;</span>
HEX Code:
<span>&#x2906;</span>

Add with CSS

.leftwards-double-arrow-from-bar::before {
  content: '\\2906';
}

Set it in JavaScript

document.querySelector('.leftwards-double-arrow-from-bar').textContent = '⤆';
copied