Tilde Operator With Dot Above

Shortcodes

Copy useful codes for tilde operator with dot above symbol ⩪ to use in websites, apps, blogs, and docs.

Unicode
U+2A6A
HTML Code
⩪
HEX Code
⩪
CSS Code
\2A6A
JS/JSON
\u2A6A
Unix/C/PHP/JAVA
0x2A6A
URL-encode
%E2%A9%AA

Customize Tilde Operator With Dot Above

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

  

How to use Tilde Operator With Dot Above Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⩪</span>
HTML Code:
<span>&#10858;</span>
HEX Code:
<span>&#x2A6A;</span>

Add with CSS

.tilde-operator-with-dot-above::before {
  content: '\\2A6A';
}

Set it in JavaScript

document.querySelector('.tilde-operator-with-dot-above').textContent = '⩪';
copied