Bent Arrow Pointing Downwards Then North East

Shortcodes

Copy useful codes for bent arrow pointing downwards then north east symbol ⭞ to use in websites, apps, blogs, and docs.

Unicode
U+2B5E
HTML Code
⭞
HEX Code
⭞
CSS Code
\2B5E
JS/JSON
\u2B5E
Unix/C/PHP/JAVA
0x2B5E
URL-encode
%E2%AD%9E

Customize Bent Arrow Pointing Downwards Then North East

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

  

How to use Bent Arrow Pointing Downwards Then North East Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⭞</span>
HTML Code:
<span>&#11102;</span>
HEX Code:
<span>&#x2B5E;</span>

Add with CSS

.bent-arrow-pointing-downwards-then-north-east::before {
  content: '\\2B5E';
}

Set it in JavaScript

document.querySelector('.bent-arrow-pointing-downwards-then-north-east').textContent = '⭞';
copied