Rightwards Arrow Over Leftwards Arrow

Shortcodes

Copy useful codes for rightwards arrow over leftwards arrow symbol ⇄ to use in websites, apps, blogs, and docs.

Unicode
U+21C4
HTML Code
⇄
HEX Code
⇄
CSS Code
\21C4
JS/JSON
\u21C4
Unix/C/PHP/JAVA
0x21C4
URL-encode
%E2%87%84

Customize Rightwards Arrow Over Leftwards Arrow

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

  

How to use Rightwards Arrow Over Leftwards Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⇄</span>
HTML Code:
<span>&#8644;</span>
HEX Code:
<span>&#x21C4;</span>

Add with CSS

.rightwards-arrow-over-leftwards-arrow::before {
  content: '\\21C4';
}

Set it in JavaScript

document.querySelector('.rightwards-arrow-over-leftwards-arrow').textContent = '⇄';
copied