Upwards White Arrow On Pedestal With Vertical Bar

Shortcodes

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

Unicode
U+21ED
HTML Code
⇭
HEX Code
⇭
CSS Code
\21ED
JS/JSON
\u21ED
Unix/C/PHP/JAVA
0x21ED
URL-encode
%E2%87%AD

Customize Upwards White Arrow On Pedestal With Vertical Bar

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

  

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

Insert in HTML

1. Direct symbol:
<span>⇭</span>
HTML Code:
<span>&#8685;</span>
HEX Code:
<span>&#x21ED;</span>

Add with CSS

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

Set it in JavaScript

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