HTML Entity for Forces (⊩)

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

What You'll Learn

How to display the Forces symbol (⊩) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+22A9 (FORCES) in the Mathematical Operators block (U+2200–U+22FF)—used in logic and proof notation (often called Vdash), for example “Γ ⊩ φ” (Gamma forces phi).

Render it with the named entity ⊩, ⊩, ⊩, or CSS escape \22A9. Do not confuse with does not force (⊮, ⊮) or ⊢ (turnstile, U+22A2).

⚡ Quick Reference — Forces

Unicode U+22A9

Mathematical Operators

Hex Code ⊩

Hexadecimal reference

HTML Code ⊩

Decimal reference

Named Entity ⊩

Forces / Vdash (most readable)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22A9
Hex code       ⊩
HTML code      ⊩
Named entity   ⊩
CSS code       \22A9
Meaning        Forces (logic / proof notation)
Related        U+22AE = Does not force (⊮, ⊮)
1

Complete HTML Example

This example demonstrates the Forces symbol (⊩) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\22A9";
  }
 </style>
</head>
<body>
<p>Forces using Hexadecimal: &#x22A9;</p>
<p>Forces using HTML Code: &#8873;</p>
<p>Forces using HTML Entity: &Vdash;</p>
<p id="point">Forces using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+22A9 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 Forces symbol (⊩) in logic and proof notation:

Sequent Γ ⊩ φ
Forcing pair M ⊩ φ  •  M ⊮ φ
Large glyph
vs does not force ⊩ &Vdash;   ⊮ &nVdash;
Entity refs &Vdash; &#x22A9; &#8873; \22A9

🧠 How It Works

1

Named Entity

&Vdash; is the HTML named entity for Forces (Vdash)—often preferred in readable logic and proof markup.

HTML markup
2

Hexadecimal Code

&#x22A9; uses the Unicode hexadecimal value 22A9. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\22A9 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+22A9 in Mathematical Operators. For negation, use &nVdash; (⊮).

Use Cases

The Forces symbol (⊩) is commonly used in:

∧ Logic & proofs

Formal logic, proof systems, and sequents (e.g. Γ ⊩ φ).

🔢 Model theory

Forcing notation where M ⊩ φ means M forces formula φ.

📚 Academia

Logic, philosophy, computer science, and type theory publications.

💻 Formal methods

Documentation on type systems, provability, and semantics.

🎓 Education

Online courses and tutorials for logic, math, or formal methods.

🌐 Symbol guides

HTML entity lists, Unicode charts, and character references.

💡 Best Practices

Do

  • Use &Vdash; for readable HTML source in logic notation
  • Pair with &nVdash; (⊮) when teaching forcing pairs
  • Use fonts that cover Mathematical Operators (Cambria Math, etc.)
  • Add aria-label (e.g. “forces”) for accessibility
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse &Vdash; (forces) with &nVdash; (does not force)
  • Confuse &Vdash; with &vdash; (turnstile, U+22A2)
  • Put CSS escape \22A9 in HTML text nodes
  • Mix entity styles randomly in one file
  • Rely on the symbol alone without accessible description

Key Takeaways

1

Three HTML references plus CSS all render ⊩

&#x22A9; &#8873; &Vdash;
2

For CSS stylesheets, use the escape in the content property

\22A9
3

Unicode U+22A9 — FORCES (Vdash)

4

&Vdash; is the standard named entity

5

Negation: Does Not Force (⊮, &nVdash;)

❓ Frequently Asked Questions

Use &Vdash; (named), &#x22A9; (hex), &#8873; (decimal), or \22A9 in CSS content. All produce ⊩.
U+22A9 (FORCES). Mathematical Operators block (U+2200–U+22FF). Hex 22A9, decimal 8873. Often called Vdash in logic notation.
In mathematical and logic notation, proof systems and formal logic, academic papers and textbooks, documentation for logic and type theory, and any content that expresses forces or entailment in a formal sense.
⊩ (U+22A9, &Vdash;) means forces. ⊮ (U+22AE, &nVdash;) means does not force. They are negations of each other.
HTML entities (&#8873;, &#x22A9;, or &Vdash;) go directly in markup. The CSS escape \22A9 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.

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