Ribbon Arrow Right Down

Shortcodes

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

Unicode
U+2BB7
HTML Code
⮷
HEX Code
⮷
CSS Code
\2BB7
JS/JSON
\u2BB7
Unix/C/PHP/JAVA
0x2BB7
URL-encode
%E2%AE%B7

Customize Ribbon Arrow Right Down

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

  

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

Insert in HTML

1. Direct symbol:
<span>⮷</span>
HTML Code:
<span>&#11191;</span>
HEX Code:
<span>&#x2BB7;</span>

Add with CSS

.ribbon-arrow-right-down::before {
  content: '\\2BB7';
}

Set it in JavaScript

document.querySelector('.ribbon-arrow-right-down').textContent = '⮷';
copied