Long Left Right Arrow

Shortcodes

Copy and paste codes for Long Left Right Arrow symbol ⟷ to use in your websites, apps, blogs, and more.

Unicode
U+27F7
HTML Code
⟷
HEX Code
⟷
CSS Code
\27F7
JS/JSON
\u27F7
Unix/C/PHP/JAVA
0x27F7
URL-encode
%E2%9F%B7
copied

Customize Long Left Right Arrow Symbol

Customize ⟷ symbol as you like and download Long Left Right Arrow as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Long Left Right Arrow symbol in HTML, CSS, and JS?

Insert ⟷ Long Left Right Arrow using HTML

1. Copy-paste Long Left Right Arrow directly:
<span>⟷</span>
2. HTML Decimal Code:
<span>&#10231;</span>
3. Hexadecimal Code:
<span>&#x27F7;</span>
Preview:

Add Long Left Right Arrow symbol with CSS

.long-left-right-arrow::before {
    content: '\\27F7';
}
Preview: Long Left Right Arrow

Long Left Right Arrow JavaScript Code

1. Direct Symbol:
document.querySelector('.long-left-right-arrow').textContent = '⟷';
2. Unicode Escape for ⟷:
document.querySelector('.long-left-right-arrow').textContent = '\u27F7';
Preview: