Tilde Operator With Rising Dots

Shortcodes

Copy useful codes for tilde operator with rising dots symbol ⩫ to use in websites, apps, blogs, and docs.

Unicode
U+2A6B
HTML Code
⩫
HEX Code
⩫
CSS Code
\2A6B
JS/JSON
\u2A6B
Unix/C/PHP/JAVA
0x2A6B
URL-encode
%E2%A9%AB

Customize Tilde Operator With Rising Dots

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

  

How to use Tilde Operator With Rising Dots Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⩫</span>
HTML Code:
<span>&#10859;</span>
HEX Code:
<span>&#x2A6B;</span>

Add with CSS

.tilde-operator-with-rising-dots::before {
  content: '\\2A6B';
}

Set it in JavaScript

document.querySelector('.tilde-operator-with-rising-dots').textContent = '⩫';
copied