Downwards Quadruple Arrow

Shortcodes

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

Unicode
U+27F1
HTML Code
⟱
HEX Code
⟱
CSS Code
\27F1
JS/JSON
\u27F1
Unix/C/PHP/JAVA
0x27F1
URL-encode
%E2%9F%B1
copied

Customize Downwards Quadruple Arrow Symbol

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

Insert ⟱ Downwards Quadruple Arrow using HTML

1. Copy-paste Downwards Quadruple Arrow directly:
<span>⟱</span>
2. HTML Decimal Code:
<span>&#10225;</span>
3. Hexadecimal Code:
<span>&#x27F1;</span>
Preview:

Add Downwards Quadruple Arrow symbol with CSS

.downwards-quadruple-arrow::before {
    content: '\\27F1';
}
Preview: Downwards Quadruple Arrow

Downwards Quadruple Arrow JavaScript Code

1. Direct Symbol:
document.querySelector('.downwards-quadruple-arrow').textContent = '⟱';
2. Unicode Escape for ⟱:
document.querySelector('.downwards-quadruple-arrow').textContent = '\u27F1';
Preview: