True

Shortcodes

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

Unicode
U+22A8
HTML Code
⊨
HEX Code
⊨
CSS Code
\22A8
JS/JSON
\u22A8
Unix/C/PHP/JAVA
0x22A8
URL-encode
%E2%8A%A8
copied

Customize True Symbol

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

Insert ⊨ True using HTML

1. Copy-paste True directly:
<span>⊨</span>
2. HTML Decimal Code:
<span>&#8872;</span>
3. Hexadecimal Code:
<span>&#x22A8;</span>
Preview:

Add True symbol with CSS

.true::before {
    content: '\\22A8';
}
Preview: True

True JavaScript Code

1. Direct Symbol:
document.querySelector('.true').textContent = '⊨';
2. Unicode Escape for ⊨:
document.querySelector('.true').textContent = '\u22A8';
Preview: