Not True

Shortcodes

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

Unicode
U+22AD
HTML Code
⊭
HEX Code
⊭
CSS Code
\22AD
JS/JSON
\u22AD
Unix/C/PHP/JAVA
0x22AD
URL-encode
%E2%8A%AD
copied

Customize Not True Symbol

Customize ⊭ symbol as you like and download Not True 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 True symbol in HTML, CSS, and JS?

Insert ⊭ Not True using HTML

1. Copy-paste Not True directly:
<span>⊭</span>
2. HTML Decimal Code:
<span>&#8877;</span>
3. Hexadecimal Code:
<span>&#x22AD;</span>
Preview:

Add Not True symbol with CSS

.not-true::before {
    content: '\\22AD';
}
Preview: Not True

Not True JavaScript Code

1. Direct Symbol:
document.querySelector('.not-true').textContent = '⊭';
2. Unicode Escape for ⊭:
document.querySelector('.not-true').textContent = '\u22AD';
Preview: