HTML Entity for Right Tack (⊢)

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

What You'll Learn

How to display the Right Tack (⊢) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+22A2 (RIGHT TACK) in the Mathematical Operators block (U+2200–U+22FF)—the turnstile used in logic and proof theory to mean “proves” or logical entailment.

Render it with ⊢ (named), ⊢, ⊢, or CSS \22A2. Do not confuse ⊢ with U+22A3 (⊣, left tack / ⊣) or U+22A9 (⊩, forces).

⚡ Quick Reference — Right Tack

Unicode U+22A2

Mathematical Operators

Hex Code ⊢

Hexadecimal reference

HTML Code ⊢

Decimal reference

Named Entity ⊢

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22A2
Hex code       ⊢
HTML code      ⊢
Named entity   ⊢
CSS code       \22A2
Meaning        Right tack (turnstile / proves)
Related        U+22A3 = left tack (⊣ / ⊣)
               U+22A9 = forces (⊩)
1

Complete HTML Example

A simple example showing the Right Tack (⊢) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

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

🌐 Browser Support

The Right Tack (⊢) is universally supported in all modern browsers when the font includes Mathematical Operators glyphs:

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

👀 Live Preview

See the Right Tack (⊢) rendered live in different contexts:

Inline logic Γ ⊢ φ means Γ proves φ.
Large glyph
Sequent notation A, B ⊢ C
Turnstile pair ⊢ ⊣
Named vs numeric &vdash; &#x22A2; &#8866; \22A2
Proof theory ⊢ is the turnstile for “proves” in formal logic.

🧠 How It Works

1

Hexadecimal Code

&#x22A2; uses the Unicode hexadecimal value 22A2 for the right tack. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&vdash; is the semantic named entity — the easiest to read in source HTML and the most self-descriptive option.

HTML markup
4

CSS Entity

\22A2 is used in CSS stylesheets in the content property of pseudo-elements like ::after.

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+22A2 is in the Mathematical Operators block. Previous: Right Squiggle Arrow.

Use Cases

The Right Tack (⊢) is commonly used in:

📜 Logic & Proof Theory

Denote “proves” (e.g. Γ ⊢ φ) or logical entailment in formal systems.

◈ Formal Semantics

Represent semantic consequence or satisfaction relations in logic.

📚 Academic Papers

Typeset proof theory, sequent calculus, or logic definitions in HTML.

📚 Math Education

Display correct logic notation in online courses and interactive content.

📄 Technical Documentation

Document formal systems, type theory, or logical frameworks that use ⊢.

🔢 Math Editors

Support in web-based equation and logic editors.

💡 Best Practices

Do

  • Use &vdash; for readable source markup
  • Add aria-label or surrounding text for accessibility
  • Distinguish ⊢ (proves) from ⊣ (does not prove)
  • Verify your font supports Mathematical Operators (U+22A2)
  • Keep one entity style per project for consistency

Don’t

  • Confuse ⊢ (right tack / turnstile) with ⊣ (left tack)
  • Use CSS \22A2 inside HTML text nodes
  • Assume all fonts render logic symbols identically
  • Mix entity styles randomly in one file
  • Use the symbol without explaining its logical meaning on first use

Key Takeaways

1

Four HTML references plus CSS all render ⊢

&#x22A2; &#8866; &vdash;
2

For CSS, use \22A2 in the content property

3

Unicode U+22A2 — RIGHT TACK

4

Prefer &vdash; for readability—it’s the named HTML entity

❓ Frequently Asked Questions

Use &#x22A2; (hex), &#8866; (decimal), &vdash; (named), or \22A2 in CSS content. All four methods render ⊢ correctly.
U+22A2 (RIGHT TACK). Mathematical Operators block (U+2200–U+22FF). Hex 22A2, decimal 8866. Used in logic and proof theory as the turnstile.
In logic, proof theory, formal systems, and mathematical notation to denote “proves”, logical entailment, or as a turnstile relation symbol.
HTML references (&#8866;, &#x22A2;, or &vdash;) go in markup. The CSS escape \22A2 is used in stylesheets, typically on ::before or ::after. Both produce ⊢.
Yes. &vdash; is the named HTML entity for U+22A2. You can also use &#8866; (decimal) or &#x22A2; (hex) and \22A2 in CSS.

Explore More HTML Entities!

Discover 1500+ HTML character references — arrows, symbols, math 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