HTML Entity for Does Not Force (⊮)

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

What You'll Learn

How to display the Does Not Force symbol (⊮) in HTML using named, hexadecimal, decimal, and CSS entity methods. This character is U+22AE (DOES NOT FORCE) in the Mathematical Operators block (U+2200–U+22FF) and denotes that a structure or condition does not force a formula—the negation of “forces” (⊩, ⊩).

Render it with the named entity ⊮, ⊮, ⊮, or CSS escape \22AE in the content property. Do not confuse with ∤ (does not divide, U+2224).

⚡ Quick Reference — Does Not Force

Unicode U+22AE

Mathematical Operators block

Hex Code ⊮

Hexadecimal reference

HTML Code ⊮

Decimal reference

Named Entity ⊮

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22AE
Hex code       ⊮
HTML code      ⊮
Named entity   ⊮
CSS code       \22AE
1

Complete HTML Example

This example demonstrates the symbol (⊮) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\22AE";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x22AE;</p>
<p>Using HTML Code: &#8878;</p>
<p>Using Named Entity: &nVdash;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+22AE is supported in modern browsers; use a font with Mathematical Operators coverage for consistent glyphs:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Does Not Force symbol (⊮) in logic and forcing notation:

Forcing M ⊩ φ  •  M ⊮ φ
Model theory Structure does not force formula: ⊮
Large glyph
vs forces ⊮ &nVdash;   ⊩ &Vdash;
Monospace refs &nVdash; &#x22AE; &#8878; \22AE

🧠 How It Works

1

Named Entity

&nVdash; is the HTML named entity for Does Not Force — the negation of &Vdash; (forces, ⊩).

HTML markup
2

Hexadecimal Code

&#x22AE; uses the Unicode hexadecimal value 22AE. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\22AE 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+22AE is the does-not-force relation. For forces (⊩), use &Vdash;.

Use Cases

The symbol (⊮) commonly appears in the following scenarios:

🔢 Model theory

When M ⊮ φ means model M does not force formula φ.

📐 Set theory

Forcing notation where ⊩ and ⊮ appear in independence proofs.

📚 Education

Logic and model theory courses teaching forcing relations.

📝 Provability

Semantic consequence and non-forcing in formal systems.

📝 Formula pages

Web logic notation needing the correct does-not-force glyph.

📑 Entity guides

HTML entity references for education and research.

💡 Best Practices

Do

  • Use &nVdash; for readable HTML source
  • Pair with &Vdash; (⊩) when teaching forcing pairs
  • Use fonts that cover Mathematical Operators (U+2200–U+22FF)
  • Pair with text or ARIA (“does not force”)
  • Pick one entity style per project for consistency

Don’t

  • Confuse &nVdash; with &nmid; (does not divide)
  • Swap &nVdash; and &Vdash; (different relations)
  • Use CSS escape \22AE inside HTML markup
  • Mix hex, decimal, and named styles randomly in one file
  • Rely on the symbol alone without accessible description

Key Takeaways

1

Three HTML references all render ⊮

&#x22AE; &#8878; &nVdash;
2

For CSS stylesheets, use the escape in the content property

\22AE
3

Unicode U+22AE is DOES NOT FORCE in logic

4

Negation of ⊩ forces (&Vdash;)

❓ Frequently Asked Questions

Use &nVdash; (named), &#x22AE; (hex), &#8878; (decimal), or \22AE in CSS content. All produce ⊮.
U+22AE (hex 22AE, decimal 8878) in the Mathematical Operators block. It means “does not force” (negation of ⊩).
In logic, model theory, set-theoretic forcing, and any content when a structure or condition does not force a given formula.
⊮ (U+22AE, &nVdash;) means does not force. ⊩ (U+22A9, &Vdash;) means forces. They are negations of each other.
No. &nVdash; is U+22AE (does not force). &Vdash; is U+22A9 (forces). &nmid; is U+2224 (does not divide). Each entity maps to a different symbol.

Explore More HTML Entities!

Discover 1500+ HTML character references — logic relations, operators, 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