Superset Of Above Tilde Operator

Shortcodes

Copy useful codes for superset of above tilde operator symbol ⫈ to use in websites, apps, blogs, and docs.

Unicode
U+2AC8
HTML Code
⫈
HEX Code
⫈
CSS Code
\2AC8
JS/JSON
\u2AC8
Unix/C/PHP/JAVA
0x2AC8
URL-encode
%E2%AB%88

Customize Superset Of Above Tilde Operator

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

  

How to use Superset Of Above Tilde Operator Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⫈</span>
HTML Code:
<span>&#10952;</span>
HEX Code:
<span>&#x2AC8;</span>

Add with CSS

.superset-of-above-tilde-operator::before {
  content: '\\2AC8';
}

Set it in JavaScript

document.querySelector('.superset-of-above-tilde-operator').textContent = '⫈';
copied