Upwards White Arrow On Pedestal

Shortcodes

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

Unicode
U+21EB
HTML Code
⇫
HEX Code
⇫
CSS Code
\21EB
JS/JSON
\u21EB
Unix/C/PHP/JAVA
0x21EB
URL-encode
%E2%87%AB

Customize Upwards White Arrow On Pedestal

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

  

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

Insert in HTML

1. Direct symbol:
<span>⇫</span>
HTML Code:
<span>&#8683;</span>
HEX Code:
<span>&#x21EB;</span>

Add with CSS

.upwards-white-arrow-on-pedestal::before {
  content: '\\21EB';
}

Set it in JavaScript

document.querySelector('.upwards-white-arrow-on-pedestal').textContent = '⇫';
copied