Rightwards White Arrow From Wall

Shortcodes

Copy useful codes for rightwards white arrow from wall symbol ⇰ to use in websites, apps, blogs, and docs.

Unicode
U+21F0
HTML Code
⇰
HEX Code
⇰
CSS Code
\21F0
JS/JSON
\u21F0
Unix/C/PHP/JAVA
0x21F0
URL-encode
%E2%87%B0

Customize Rightwards White Arrow From Wall

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

  

How to use Rightwards White Arrow From Wall Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⇰</span>
HTML Code:
<span>&#8688;</span>
HEX Code:
<span>&#x21F0;</span>

Add with CSS

.rightwards-white-arrow-from-wall::before {
  content: '\\21F0';
}

Set it in JavaScript

document.querySelector('.rightwards-white-arrow-from-wall').textContent = '⇰';
copied