Short Backslanted South Arrow

Shortcodes

Copy useful codes for short backslanted south arrow symbol ⭏ to use in websites, apps, blogs, and docs.

Unicode
U+2B4F
HTML Code
⭏
HEX Code
⭏
CSS Code
\2B4F
JS/JSON
\u2B4F
Unix/C/PHP/JAVA
0x2B4F
URL-encode
%E2%AD%8F

Customize Short Backslanted South Arrow

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

  

How to use Short Backslanted South Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⭏</span>
HTML Code:
<span>&#11087;</span>
HEX Code:
<span>&#x2B4F;</span>

Add with CSS

.short-backslanted-south-arrow::before {
  content: '\\2B4F';
}

Set it in JavaScript

document.querySelector('.short-backslanted-south-arrow').textContent = '⭏';
copied