Long Left Right Double Arrow

Shortcodes

Copy useful codes for long left right double arrow symbol ⟺ to use in websites, apps, blogs, and docs.

Unicode
U+27FA
HTML Code
⟺
HEX Code
⟺
CSS Code
\27FA
JS/JSON
\u27FA
Unix/C/PHP/JAVA
0x27FA
URL-encode
%E2%9F%BA

Customize Long Left Right Double Arrow

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

  

How to use Long Left Right Double Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⟺</span>
HTML Code:
<span>&#10234;</span>
HEX Code:
<span>&#x27FA;</span>

Add with CSS

.long-left-right-double-arrow::before {
  content: '\\27FA';
}

Set it in JavaScript

document.querySelector('.long-left-right-double-arrow').textContent = '⟺';
copied