Upwards Paired Arrows

Shortcodes

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

Unicode
U+21C8
HTML Code
⇈
HEX Code
⇈
CSS Code
\21C8
JS/JSON
\u21C8
Unix/C/PHP/JAVA
0x21C8
URL-encode
%E2%87%88
copied

Customize Upwards Paired Arrows Symbol

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

Insert ⇈ Upwards Paired Arrows using HTML

1. Copy-paste Upwards Paired Arrows directly:
<span>⇈</span>
2. HTML Decimal Code:
<span>&#8648;</span>
3. Hexadecimal Code:
<span>&#x21C8;</span>
Preview:

Add Upwards Paired Arrows symbol with CSS

.upwards-paired-arrows::before {
    content: '\\21C8';
}
Preview: Upwards Paired Arrows

Upwards Paired Arrows JavaScript Code

1. Direct Symbol:
document.querySelector('.upwards-paired-arrows').textContent = '⇈';
2. Unicode Escape for ⇈:
document.querySelector('.upwards-paired-arrows').textContent = '\u21C8';
Preview: