Rightwards Triple Arrow

Shortcodes

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

Unicode
U+21DB
HTML Code
⇛
HEX Code
⇛
CSS Code
\21DB
JS/JSON
\u21DB
Unix/C/PHP/JAVA
0x21DB
URL-encode
%E2%87%9B
copied

Customize Rightwards Triple Arrow Symbol

Customize ⇛ symbol as you like and download Rightwards Triple 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 Triple Arrow symbol in HTML, CSS, and JS?

Insert ⇛ Rightwards Triple Arrow using HTML

1. Copy-paste Rightwards Triple Arrow directly:
<span>⇛</span>
2. HTML Decimal Code:
<span>&#8667;</span>
3. Hexadecimal Code:
<span>&#x21DB;</span>
Preview:

Add Rightwards Triple Arrow symbol with CSS

.rightwards-triple-arrow::before {
    content: '\\21DB';
}
Preview: Rightwards Triple Arrow

Rightwards Triple Arrow JavaScript Code

1. Direct Symbol:
document.querySelector('.rightwards-triple-arrow').textContent = '⇛';
2. Unicode Escape for ⇛:
document.querySelector('.rightwards-triple-arrow').textContent = '\u21DB';
Preview: