True

Shortcodes

Copy useful codes for true symbol ⊨ to use in websites, apps, blogs, and docs.

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

Customize True

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

  

How to use True Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⊨</span>
HTML Code:
<span>&#8872;</span>
HEX Code:
<span>&#x22A8;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.true').textContent = '⊨';
copied