Leftwards Double Dash Arrow

Shortcodes

Copy useful codes for leftwards double dash arrow symbol ⤌ to use in websites, apps, blogs, and docs.

Unicode
U+290C
HTML Code
⤌
HEX Code
⤌
CSS Code
\290C
JS/JSON
\u290C
Unix/C/PHP/JAVA
0x290C
URL-encode
%E2%A4%8C

Customize Leftwards Double Dash Arrow

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

  

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

Insert in HTML

1. Direct symbol:
<span>⤌</span>
HTML Code:
<span>&#10508;</span>
HEX Code:
<span>&#x290C;</span>

Add with CSS

.leftwards-double-dash-arrow::before {
  content: '\\290C';
}

Set it in JavaScript

document.querySelector('.leftwards-double-dash-arrow').textContent = '⤌';
copied