Ribbon Arrow Up Left

Shortcodes

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

Unicode
U+2BB2
HTML Code
⮲
HEX Code
⮲
CSS Code
\2BB2
JS/JSON
\u2BB2
Unix/C/PHP/JAVA
0x2BB2
URL-encode
%E2%AE%B2
copied

Customize Ribbon Arrow Up Left Symbol

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

Insert ⮲ Ribbon Arrow Up Left using HTML

1. Copy-paste Ribbon Arrow Up Left directly:
<span>⮲</span>
2. HTML Decimal Code:
<span>&#11186;</span>
3. Hexadecimal Code:
<span>&#x2BB2;</span>
Preview:

Add Ribbon Arrow Up Left symbol with CSS

.ribbon-arrow-up-left::before {
    content: '\\2BB2';
}
Preview: Ribbon Arrow Up Left

Ribbon Arrow Up Left JavaScript Code

1. Direct Symbol:
document.querySelector('.ribbon-arrow-up-left').textContent = '⮲';
2. Unicode Escape for ⮲:
document.querySelector('.ribbon-arrow-up-left').textContent = '\u2BB2';
Preview: