Long Leftwards Arrow

Shortcodes

Copy and paste codes for Long Leftwards Arrow symbol ⟵ to use in your websites, apps, blogs, and more.

Unicode
U+27F5
HTML Code
⟵
HEX Code
⟵
CSS Code
\27F5
JS/JSON
\u27F5
Unix/C/PHP/JAVA
0x27F5
URL-encode
%E2%9F%B5
copied

Customize Long Leftwards Arrow Symbol

Customize ⟵ symbol as you like and download Long Leftwards 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 Leftwards Arrow symbol in HTML, CSS, and JS?

Insert ⟵ Long Leftwards Arrow using HTML

1. Copy-paste Long Leftwards Arrow directly:
<span>⟵</span>
2. HTML Decimal Code:
<span>&#10229;</span>
3. Hexadecimal Code:
<span>&#x27F5;</span>
Preview:

Add Long Leftwards Arrow symbol with CSS

.long-leftwards-arrow::before {
    content: '\\27F5';
}
Preview: Long Leftwards Arrow

Long Leftwards Arrow JavaScript Code

1. Direct Symbol:
document.querySelector('.long-leftwards-arrow').textContent = '⟵';
2. Unicode Escape for ⟵:
document.querySelector('.long-leftwards-arrow').textContent = '\u27F5';
Preview: