Upwards Paired Arrows

Shortcodes

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

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

Customize Upwards Paired Arrows

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

  

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

Insert in HTML

1. Direct symbol:
<span>⇈</span>
HTML Code:
<span>&#8648;</span>
HEX Code:
<span>&#x21C8;</span>

Add with CSS

.upwards-paired-arrows::before {
  content: '\\21C8';
}

Set it in JavaScript

document.querySelector('.upwards-paired-arrows').textContent = '⇈';
copied