Three Rightwards Arrows

Shortcodes

Copy and paste codes for Three Rightwards Arrows symbol ⇶ to use in your websites, apps, blogs, and more.

Unicode
U+21F6
HTML Code
⇶
HEX Code
⇶
CSS Code
\21F6
JS/JSON
\u21F6
Unix/C/PHP/JAVA
0x21F6
URL-encode
%E2%87%B6
copied

Customize Three Rightwards Arrows Symbol

Customize ⇶ symbol as you like and download Three Rightwards Arrows 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 Three Rightwards Arrows symbol in HTML, CSS, and JS?

Insert ⇶ Three Rightwards Arrows using HTML

1. Copy-paste Three Rightwards Arrows directly:
<span>⇶</span>
2. HTML Decimal Code:
<span>&#8694;</span>
3. Hexadecimal Code:
<span>&#x21F6;</span>
Preview:

Add Three Rightwards Arrows symbol with CSS

.three-rightwards-arrows::before {
    content: '\\21F6';
}
Preview: Three Rightwards Arrows

Three Rightwards Arrows JavaScript Code

1. Direct Symbol:
document.querySelector('.three-rightwards-arrows').textContent = '⇶';
2. Unicode Escape for ⇶:
document.querySelector('.three-rightwards-arrows').textContent = '\u21F6';
Preview: