Leftwards Two-headed Arrow From Bar

Shortcodes

Copy useful codes for leftwards two-headed arrow from bar symbol ⬶ to use in websites, apps, blogs, and docs.

Unicode
U+2B36
HTML Code
⬶
HEX Code
⬶
CSS Code
\2B36
JS/JSON
\u2B36
Unix/C/PHP/JAVA
0x2B36
URL-encode
%E2%AC%B6

Customize Leftwards Two-headed Arrow From Bar

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

  

How to use Leftwards Two-headed Arrow From Bar Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⬶</span>
HTML Code:
<span>&#11062;</span>
HEX Code:
<span>&#x2B36;</span>

Add with CSS

.leftwards-two-headed-arrow-from-bar::before {
  content: '\\2B36';
}

Set it in JavaScript

document.querySelector('.leftwards-two-headed-arrow-from-bar').textContent = '⬶';
copied