Ribbon Arrow Right Up

Shortcodes

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

Unicode
U+2BB5
HTML Code
⮵
HEX Code
⮵
CSS Code
\2BB5
JS/JSON
\u2BB5
Unix/C/PHP/JAVA
0x2BB5
URL-encode
%E2%AE%B5

Customize Ribbon Arrow Right Up

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

  

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

Insert in HTML

1. Direct symbol:
<span>⮵</span>
HTML Code:
<span>&#11189;</span>
HEX Code:
<span>&#x2BB5;</span>

Add with CSS

.ribbon-arrow-right-up::before {
  content: '\\2BB5';
}

Set it in JavaScript

document.querySelector('.ribbon-arrow-right-up').textContent = '⮵';
copied