Rightwards White Arrow

Shortcodes

Copy and paste codes for Rightwards White Arrow symbol ⇨ to use in your websites, apps, blogs, and more.

Unicode
U+21E8
HTML Code
⇨
HEX Code
⇨
CSS Code
\21E8
JS/JSON
\u21E8
Unix/C/PHP/JAVA
0x21E8
URL-encode
%E2%87%A8
copied

Customize Rightwards White Arrow Symbol

Customize ⇨ symbol as you like and download Rightwards White Arrow as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Rightwards White Arrow symbol in HTML, CSS, and JS?

Insert ⇨ Rightwards White Arrow using HTML

1. Copy-paste Rightwards White Arrow directly:
<span>⇨</span>
2. HTML Decimal Code:
<span>&#8680;</span>
3. Hexadecimal Code:
<span>&#x21E8;</span>
Preview:

Add Rightwards White Arrow symbol with CSS

.rightwards-white-arrow::before {
    content: '\\21E8';
}
Preview: Rightwards White Arrow

Rightwards White Arrow JavaScript Code

1. Direct Symbol:
document.querySelector('.rightwards-white-arrow').textContent = '⇨';
2. Unicode Escape for ⇨:
document.querySelector('.rightwards-white-arrow').textContent = '\u21E8';
Preview: