Leftwards Arrow Above Short Rightwards Arrow

Shortcodes

Copy useful codes for leftwards arrow above short rightwards arrow symbol ⥃ to use in websites, apps, blogs, and docs.

Unicode
U+2943
HTML Code
⥃
HEX Code
⥃
CSS Code
\2943
JS/JSON
\u2943
Unix/C/PHP/JAVA
0x2943
URL-encode
%E2%A5%83

Customize Leftwards Arrow Above Short Rightwards Arrow

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

  

How to use Leftwards Arrow Above Short Rightwards Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⥃</span>
HTML Code:
<span>&#10563;</span>
HEX Code:
<span>&#x2943;</span>

Add with CSS

.leftwards-arrow-above-short-rightwards-arrow::before {
  content: '\\2943';
}

Set it in JavaScript

document.querySelector('.leftwards-arrow-above-short-rightwards-arrow').textContent = '⥃';
copied