Ribbon Arrow Left Up

Shortcodes

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

Unicode
U+2BB4
HTML Code
⮴
HEX Code
⮴
CSS Code
\2BB4
JS/JSON
\u2BB4
Unix/C/PHP/JAVA
0x2BB4
URL-encode
%E2%AE%B4

Customize Ribbon Arrow Left Up

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

  

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

Insert in HTML

1. Direct symbol:
<span>⮴</span>
HTML Code:
<span>&#11188;</span>
HEX Code:
<span>&#x2BB4;</span>

Add with CSS

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

Set it in JavaScript

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