Leftwards Arrow Over Rightwards Arrow

Shortcodes

Copy and paste codes for Leftwards Arrow Over Rightwards Arrow symbol ⇆ to use in your websites, apps, blogs, and more.

Unicode
U+21C6
HTML Code
⇆
HEX Code
⇆
CSS Code
\21C6
JS/JSON
\u21C6
Unix/C/PHP/JAVA
0x21C6
URL-encode
%E2%87%86
copied

Customize Leftwards Arrow Over Rightwards Arrow Symbol

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

Insert ⇆ Leftwards Arrow Over Rightwards Arrow using HTML

1. Copy-paste Leftwards Arrow Over Rightwards Arrow directly:
<span>⇆</span>
2. HTML Decimal Code:
<span>&#8646;</span>
3. Hexadecimal Code:
<span>&#x21C6;</span>
Preview:

Add Leftwards Arrow Over Rightwards Arrow symbol with CSS

.leftwards-arrow-over-rightwards-arrow::before {
    content: '\\21C6';
}
Preview: Leftwards Arrow Over Rightwards Arrow

Leftwards Arrow Over Rightwards Arrow JavaScript Code

1. Direct Symbol:
document.querySelector('.leftwards-arrow-over-rightwards-arrow').textContent = '⇆';
2. Unicode Escape for ⇆:
document.querySelector('.leftwards-arrow-over-rightwards-arrow').textContent = '\u21C6';
Preview: