Short Rightwards Arrow Above Leftwards Arrow

Shortcodes

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

Unicode
U+2944
HTML Code
⥄
HEX Code
⥄
CSS Code
\2944
JS/JSON
\u2944
Unix/C/PHP/JAVA
0x2944
URL-encode
%E2%A5%84

Customize Short Rightwards Arrow Above Leftwards Arrow

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

  

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

Insert in HTML

1. Direct symbol:
<span>⥄</span>
HTML Code:
<span>&#10564;</span>
HEX Code:
<span>&#x2944;</span>

Add with CSS

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

Set it in JavaScript

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