Upwards Double Arrow

Shortcodes

Copy and paste codes for Upwards Double Arrow symbol ⇑ to use in your websites, apps, blogs, and more.

Unicode
U+21D1
HTML Code
⇑
HTML Entity
⇑
HEX Code
⇑
CSS Code
\21D1
JS/JSON
\u21D1
Unix/C/PHP/JAVA
0x21D1
URL-encode
%E2%87%91
copied

Customize Upwards Double Arrow Symbol

Customize ⇑ symbol as you like and download Upwards Double Arrow 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 Double Arrow symbol in HTML, CSS, and JS?

Insert ⇑ Upwards Double Arrow using HTML

1. Copy-paste Upwards Double Arrow directly:
<span>⇑</span>
2. HTML Decimal Code:
<span>&#8657;</span>
3. HTML Entity:
<span>&uArr;</span>
4. Hexadecimal Code:
<span>&#x21D1;</span>
Preview:

Add Upwards Double Arrow symbol with CSS

.upwards-double-arrow::before {
    content: '\\21D1';
}
Preview: Upwards Double Arrow

Upwards Double Arrow JavaScript Code

1. Direct Symbol:
document.querySelector('.upwards-double-arrow').textContent = '⇑';
2. Unicode Escape for ⇑:
document.querySelector('.upwards-double-arrow').textContent = '\u21D1';
Preview: