Upwards Arrow With Double Stroke

Shortcodes

Copy useful codes for upwards arrow with double stroke symbol ⇞ to use in websites, apps, blogs, and docs.

Unicode
U+21DE
HTML Code
⇞
HEX Code
⇞
CSS Code
\21DE
JS/JSON
\u21DE
Unix/C/PHP/JAVA
0x21DE
URL-encode
%E2%87%9E

Customize Upwards Arrow With Double Stroke

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

  

How to use Upwards Arrow With Double Stroke Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⇞</span>
HTML Code:
<span>&#8670;</span>
HEX Code:
<span>&#x21DE;</span>

Add with CSS

.upwards-arrow-with-double-stroke::before {
  content: '\\21DE';
}

Set it in JavaScript

document.querySelector('.upwards-arrow-with-double-stroke').textContent = '⇞';
copied