Rightwards Arrow Above Short Leftwards Arrow

Shortcodes

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

Unicode
U+2942
HTML Code
⥂
HEX Code
⥂
CSS Code
\2942
JS/JSON
\u2942
Unix/C/PHP/JAVA
0x2942
URL-encode
%E2%A5%82

Customize Rightwards Arrow Above Short Leftwards Arrow

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

  

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

Insert in HTML

1. Direct symbol:
<span>⥂</span>
HTML Code:
<span>&#10562;</span>
HEX Code:
<span>&#x2942;</span>

Add with CSS

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

Set it in JavaScript

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