Rightwards Paired Arrows

Shortcodes

Copy useful codes for rightwards paired arrows symbol ⇉ to use in websites, apps, blogs, and docs.

Unicode
U+21C9
HTML Code
⇉
HEX Code
⇉
CSS Code
\21C9
JS/JSON
\u21C9
Unix/C/PHP/JAVA
0x21C9
URL-encode
%E2%87%89

Customize Rightwards Paired Arrows

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

  

How to use Rightwards Paired Arrows Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⇉</span>
HTML Code:
<span>&#8649;</span>
HEX Code:
<span>&#x21C9;</span>

Add with CSS

.rightwards-paired-arrows::before {
  content: '\\21C9';
}

Set it in JavaScript

document.querySelector('.rightwards-paired-arrows').textContent = '⇉';
copied