Upwards White Arrow On Pedestal With Horizontal Bar

Shortcodes

Copy useful codes for upwards white arrow on pedestal with horizontal bar symbol ⇬ to use in websites, apps, blogs, and docs.

Unicode
U+21EC
HTML Code
⇬
HEX Code
⇬
CSS Code
\21EC
JS/JSON
\u21EC
Unix/C/PHP/JAVA
0x21EC
URL-encode
%E2%87%AC

Customize Upwards White Arrow On Pedestal With Horizontal Bar

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

  

How to use Upwards White Arrow On Pedestal With Horizontal Bar Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⇬</span>
HTML Code:
<span>&#8684;</span>
HEX Code:
<span>&#x21EC;</span>

Add with CSS

.upwards-white-arrow-on-pedestal-with-horizontal-bar::before {
  content: '\\21EC';
}

Set it in JavaScript

document.querySelector('.upwards-white-arrow-on-pedestal-with-horizontal-bar').textContent = '⇬';
copied