Ribbon Arrow Down Left

Shortcodes

Copy and paste codes for Ribbon Arrow Down Left symbol ⮰ to use in your websites, apps, blogs, and more.

Unicode
U+2BB0
HTML Code
⮰
HEX Code
⮰
CSS Code
\2BB0
JS/JSON
\u2BB0
Unix/C/PHP/JAVA
0x2BB0
URL-encode
%E2%AE%B0
copied

Customize Ribbon Arrow Down Left Symbol

Customize ⮰ symbol as you like and download Ribbon Arrow Down Left 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 Ribbon Arrow Down Left symbol in HTML, CSS, and JS?

Insert ⮰ Ribbon Arrow Down Left using HTML

1. Copy-paste Ribbon Arrow Down Left directly:
<span>⮰</span>
2. HTML Decimal Code:
<span>&#11184;</span>
3. Hexadecimal Code:
<span>&#x2BB0;</span>
Preview:

Add Ribbon Arrow Down Left symbol with CSS

.ribbon-arrow-down-left::before {
    content: '\\2BB0';
}
Preview: Ribbon Arrow Down Left

Ribbon Arrow Down Left JavaScript Code

1. Direct Symbol:
document.querySelector('.ribbon-arrow-down-left').textContent = '⮰';
2. Unicode Escape for ⮰:
document.querySelector('.ribbon-arrow-down-left').textContent = '\u2BB0';
Preview: