Ribbon Arrow Up Left

Shortcodes

Copy useful codes for ribbon arrow up left symbol ⮲ to use in websites, apps, blogs, and docs.

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

Customize Ribbon Arrow Up Left

Customize ⮲, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Ribbon Arrow Up Left Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⮲</span>
HTML Code:
<span>&#11186;</span>
HEX Code:
<span>&#x2BB2;</span>

Add with CSS

.ribbon-arrow-up-left::before {
  content: '\\2BB2';
}

Set it in JavaScript

document.querySelector('.ribbon-arrow-up-left').textContent = '⮲';
copied