Rightwards Paired Arrows

Shortcodes

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

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

Customize Rightwards Paired Arrows Symbol

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

Insert ⇉ Rightwards Paired Arrows using HTML

1. Copy-paste Rightwards Paired Arrows directly:
<span>⇉</span>
2. HTML Decimal Code:
<span>&#8649;</span>
3. Hexadecimal Code:
<span>&#x21C9;</span>
Preview:

Add Rightwards Paired Arrows symbol with CSS

.rightwards-paired-arrows::before {
    content: '\\21C9';
}
Preview: Rightwards Paired Arrows

Rightwards Paired Arrows JavaScript Code

1. Direct Symbol:
document.querySelector('.rightwards-paired-arrows').textContent = '⇉';
2. Unicode Escape for ⇉:
document.querySelector('.rightwards-paired-arrows').textContent = '\u21C9';
Preview: