Triple Tilde

Shortcodes

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

Unicode
U+224B
HTML Code
≋
HEX Code
≋
CSS Code
\224B
JS/JSON
\u224B
Unix/C/PHP/JAVA
0x224B
URL-encode
%E2%89%8B

Customize Triple Tilde

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

  

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

Insert in HTML

1. Direct symbol:
<span>≋</span>
HTML Code:
<span>&#8779;</span>
HEX Code:
<span>&#x224B;</span>

Add with CSS

.triple-tilde::before {
  content: '\\224B';
}

Set it in JavaScript

document.querySelector('.triple-tilde').textContent = '≋';
copied