Rightwards Arrow Above Tilde Operator

Shortcodes

Copy useful codes for rightwards arrow above tilde operator symbol ⥴ to use in websites, apps, blogs, and docs.

Unicode
U+2974
HTML Code
⥴
HEX Code
⥴
CSS Code
\2974
JS/JSON
\u2974
Unix/C/PHP/JAVA
0x2974
URL-encode
%E2%A5%B4

Customize Rightwards Arrow Above Tilde Operator

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

  

How to use Rightwards Arrow Above Tilde Operator Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⥴</span>
HTML Code:
<span>&#10612;</span>
HEX Code:
<span>&#x2974;</span>

Add with CSS

.rightwards-arrow-above-tilde-operator::before {
  content: '\\2974';
}

Set it in JavaScript

document.querySelector('.rightwards-arrow-above-tilde-operator').textContent = '⥴';
copied