HTML Entity for Not True (⊭)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+22AD

What You'll Learn

How to display the Not True symbol (⊭) in HTML using named, hexadecimal, decimal, and CSS escape methods. This turnstile operator denotes that a formula is not true (not provable) in a given logical context.

This character is U+22AD (NOT TRUE) in the Mathematical Operators block (U+2200–U+22FF). Render it with the named entity ⊭, ⊭, ⊭, or CSS escape \22AD. Compare with Not Sign (¬, ¬, logical negation) and related turnstiles in Negated Double Vertical Bar Double Right Turnstile (⊯).

⚡ Quick Reference — Not True

Unicode U+22AD

Mathematical Operators

Hex Code ⊭

Hexadecimal reference

HTML Code ⊭

Decimal reference

Named Entity ⊭

HTML5 named entity for U+22AD

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22AD
Hex code       ⊭
HTML code      ⊭
Named entity   ⊭
CSS code       \22AD
Meaning        Not true (unprovable turnstile)
Related        U+22A2 = right tack (⊢, ⊢)
               U+22A9 = forces (⊩, ⊩)
               U+22AF = nVDash (⊯, ⊯)
               U+00AC = not sign (¬, ¬)
Block          Mathematical Operators (U+2200–U+22FF)
1

Complete HTML Example

A simple example showing ⊭ using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\22AD";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x22AD;</p>
<p>Symbol (decimal): &#8877;</p>
<p>Symbol (named): &nvDash;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+22AD is widely supported wherever Unicode Mathematical Operators render correctly:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See ⊭ in modal logic and proof-theory notation:

Logic Wφ means φ is not true in world W.
Large glyph
Turnstile family ⊢ proves   ⊩ forces   ⊭ not true
Example Γ ⊭ PQ
Entity refs &nvDash; &#x22AD; &#8877; \22AD

🧠 How It Works

1

Named Entity

&nvDash; is the HTML named entity for U+22AD—the most readable choice when writing logic and proof markup.

HTML markup
2

Hexadecimal Code

&#x22AD; uses the Unicode hexadecimal value 22AD to display the not-true turnstile.

HTML markup
3

Decimal HTML Code

&#8877; uses the decimal Unicode value 8877 to display the same character.

HTML markup
4

CSS Entity

\22AD is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce: . Unicode U+22AD in Mathematical Operators (U+2200–U+22FF).

Use Cases

The ⊭ symbol (&nvDash;) is commonly used in:

🔢 Modal logic

Denoting that a formula is not true in a given world or context.

📚 Proof theory

Turnstile notation for unprovability and semantic consequence.

📐 Formal semantics

Textbooks, papers, and lecture notes on logic and meaning.

💻 CS education

Logic, type theory, and formal methods courses with web notation.

🎓 Online courses

Interactive logic modules covering turnstile symbols.

🌐 Reference guides

Unicode charts and HTML entity documentation for math symbols.

💡 Best Practices

Do

  • Use &nvDash; for readable logic and proof markup
  • Distinguish ⊭ (not true turnstile) from ¬ (&not;, logical NOT)
  • Pair ⊭ with plain-language description on first use
  • Use numeric references in generated or XML-first workflows
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ⊭ (&nvDash;) with ¬ (&not;, not sign)
  • Confuse &nvDash; with &nVDash; (⊯, double-bar negated turnstile)
  • Use padded Unicode notation like U+022AD—the correct value is U+22AD
  • Put CSS escape \22AD in HTML text nodes
  • Use \022AD in CSS—the correct escape is \22AD

Key Takeaways

1

Three HTML references plus CSS all render ⊭

&#x22AD; &#8877; &nvDash;
2

For CSS stylesheets, use the escape in the content property

\22AD
3

Unicode U+22AD — NOT TRUE

4

Mathematical Operators block (U+2200–U+22FF)

5

&nvDash; is the preferred named entity for readable source markup

❓ Frequently Asked Questions

Use &nvDash; (named), &#x22AD; (hex), &#8877; (decimal), or \22AD in CSS content. All produce ⊭.
U+22AD (NOT TRUE). Mathematical Operators block (U+2200–U+22FF). Hex 22AD, decimal 8877. Named entity: &nvDash;.
No. ⊭ is a turnstile meaning “not true” in logic (U+22AD, &nvDash;). ¬ is the not sign for propositional negation (U+00AC, &not;). They serve different roles in notation.
HTML references (&#8877;, &#x22AD;, or &nvDash;) go directly in markup. The CSS escape \22AD is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Yes. &nvDash; is the named HTML entity for U+22AD and is the most readable option in logic markup.

Explore More HTML Entities!

Discover 1500+ HTML character references — arrows, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful