Ribbon Arrow Left Down

Shortcodes

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

Unicode
U+2BB6
HTML Code
⮶
HEX Code
⮶
CSS Code
\2BB6
JS/JSON
\u2BB6
Unix/C/PHP/JAVA
0x2BB6
URL-encode
%E2%AE%B6

Customize Ribbon Arrow Left Down

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

  

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

Insert in HTML

1. Direct symbol:
<span>⮶</span>
HTML Code:
<span>&#11190;</span>
HEX Code:
<span>&#x2BB6;</span>

Add with CSS

.ribbon-arrow-left-down::before {
  content: '\\2BB6';
}

Set it in JavaScript

document.querySelector('.ribbon-arrow-left-down').textContent = '⮶';
copied