Downwards Triple Arrow

Shortcodes

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

Unicode
U+290B
HTML Code
⤋
HEX Code
⤋
CSS Code
\290B
JS/JSON
\u290B
Unix/C/PHP/JAVA
0x290B
URL-encode
%E2%A4%8B
copied

Customize Downwards Triple Arrow Symbol

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

Insert ⤋ Downwards Triple Arrow using HTML

1. Copy-paste Downwards Triple Arrow directly:
<span>⤋</span>
2. HTML Decimal Code:
<span>&#10507;</span>
3. Hexadecimal Code:
<span>&#x290B;</span>
Preview:

Add Downwards Triple Arrow symbol with CSS

.downwards-triple-arrow::before {
    content: '\\290B';
}
Preview: Downwards Triple Arrow

Downwards Triple Arrow JavaScript Code

1. Direct Symbol:
document.querySelector('.downwards-triple-arrow').textContent = '⤋';
2. Unicode Escape for ⤋:
document.querySelector('.downwards-triple-arrow').textContent = '\u290B';
Preview: