Leftwards Paired Arrows

Shortcodes

Copy and paste codes for Leftwards Paired Arrows symbol ⇇ to use in your websites, apps, blogs, and more.

Unicode
U+21C7
HTML Code
⇇
HEX Code
⇇
CSS Code
\21C7
JS/JSON
\u21C7
Unix/C/PHP/JAVA
0x21C7
URL-encode
%E2%87%87
copied

Customize Leftwards Paired Arrows Symbol

Customize ⇇ symbol as you like and download Leftwards Paired Arrows 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 Leftwards Paired Arrows symbol in HTML, CSS, and JS?

Insert ⇇ Leftwards Paired Arrows using HTML

1. Copy-paste Leftwards Paired Arrows directly:
<span>⇇</span>
2. HTML Decimal Code:
<span>&#8647;</span>
3. Hexadecimal Code:
<span>&#x21C7;</span>
Preview:

Add Leftwards Paired Arrows symbol with CSS

.leftwards-paired-arrows::before {
    content: '\\21C7';
}
Preview: Leftwards Paired Arrows

Leftwards Paired Arrows JavaScript Code

1. Direct Symbol:
document.querySelector('.leftwards-paired-arrows').textContent = '⇇';
2. Unicode Escape for ⇇:
document.querySelector('.leftwards-paired-arrows').textContent = '\u21C7';
Preview: