Reversed Tilde

Shortcodes

Copy useful codes for reversed tilde symbol ∽ to use in websites, apps, blogs, and docs.

Unicode
U+223D
HTML Code
∽
HEX Code
∽
CSS Code
\223D
JS/JSON
\u223D
Unix/C/PHP/JAVA
0x223D
URL-encode
%E2%88%BD

Customize Reversed Tilde

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

  

How to use Reversed Tilde Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>∽</span>
HTML Code:
<span>&#8765;</span>
HEX Code:
<span>&#x223D;</span>

Add with CSS

.reversed-tilde::before {
  content: '\\223D';
}

Set it in JavaScript

document.querySelector('.reversed-tilde').textContent = '∽';
copied