Tilde Operator Above Rightwards Arrow

Shortcodes

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

Unicode
U+2972
HTML Code
⥲
HEX Code
⥲
CSS Code
\2972
JS/JSON
\u2972
Unix/C/PHP/JAVA
0x2972
URL-encode
%E2%A5%B2

Customize Tilde Operator Above Rightwards Arrow

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

  

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

Insert in HTML

1. Direct symbol:
<span>⥲</span>
HTML Code:
<span>&#10610;</span>
HEX Code:
<span>&#x2972;</span>

Add with CSS

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

Set it in JavaScript

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