Upwards White Arrow From Bar

Shortcodes

Copy useful codes for upwards white arrow from bar symbol ⇪ to use in websites, apps, blogs, and docs.

Unicode
U+21EA
HTML Code
⇪
HEX Code
⇪
CSS Code
\21EA
JS/JSON
\u21EA
Unix/C/PHP/JAVA
0x21EA
URL-encode
%E2%87%AA

Customize Upwards White Arrow From Bar

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

  

How to use Upwards White Arrow From Bar Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⇪</span>
HTML Code:
<span>&#8682;</span>
HEX Code:
<span>&#x21EA;</span>

Add with CSS

.upwards-white-arrow-from-bar::before {
  content: '\\21EA';
}

Set it in JavaScript

document.querySelector('.upwards-white-arrow-from-bar').textContent = '⇪';
copied