Not Tilde

Shortcodes

Copy and paste codes for Not Tilde symbol ≁ to use in your websites, apps, blogs, and more.

Unicode
U+2241
HTML Code
≁
HEX Code
≁
CSS Code
\2241
JS/JSON
\u2241
Unix/C/PHP/JAVA
0x2241
URL-encode
%E2%89%81
copied

Customize Not Tilde Symbol

Customize ≁ symbol as you like and download Not Tilde as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Not Tilde symbol in HTML, CSS, and JS?

Insert ≁ Not Tilde using HTML

1. Copy-paste Not Tilde directly:
<span>≁</span>
2. HTML Decimal Code:
<span>&#8769;</span>
3. Hexadecimal Code:
<span>&#x2241;</span>
Preview:

Add Not Tilde symbol with CSS

.not-tilde::before {
    content: '\\2241';
}
Preview: Not Tilde

Not Tilde JavaScript Code

1. Direct Symbol:
document.querySelector('.not-tilde').textContent = '≁';
2. Unicode Escape for ≁:
document.querySelector('.not-tilde').textContent = '\u2241';
Preview: