HTML Entity for Double Vertical Bar Double Right Turnstile (⊫)

What You'll Learn
How to display the Double Vertical Bar Double Right Turnstile (⊫) in HTML using hexadecimal, decimal, the named entity ⊫, and CSS escape methods. This character is U+22AB (DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE) in the Mathematical Operators block (U+2200–U+22FF)—used in logic, proof theory, and sequent calculus.
Render it with ⊫, ⊫, ⊫, or CSS escape \22AB. For the standard turnstile use ⊢ (⊢, U+22A2); do not confuse ⊫ with ⊢ (case matters). See also assertion and math entities.
⚡ Quick Reference — Double Vertical Bar Double Right Turnstile
U+22ABMathematical Operators block
⊫Hexadecimal reference
⊫Decimal reference
⊫HTML5 named entity for U+22AB
Name Value
──────────── ──────────
Unicode U+22AB
Hex code ⊫
HTML code ⊫
Named entity ⊫
CSS code \22AB
Related U+22A2 = Turnstile (⊢); U+22A8 = True (⊨)Complete HTML Example
This example demonstrates the Double Vertical Bar Double Right Turnstile (⊫) using hexadecimal code, decimal HTML code, the named entity ⊫, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\22AB";
}
</style>
</head>
<body>
<p>Double Vertical Bar Double Right Turnstile using Hexadecimal: ⊫</p>
<p>Double Vertical Bar Double Right Turnstile using HTML Code: ⊫</p>
<p>Double Vertical Bar Double Right Turnstile using HTML Entity: ⊫</p>
<p id="point">Double Vertical Bar Double Right Turnstile using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+22AB is widely supported in modern browsers when rendered with a font that includes Mathematical Operators:
👀 Live Preview
See the Double Vertical Bar Double Right Turnstile (⊫) in mathematical notation:
🧠 How It Works
Hexadecimal Code
⊫ uses the Unicode hexadecimal value 22AB to display the Double Vertical Bar Double Right Turnstile. The x prefix indicates hexadecimal format.
Decimal HTML Code
⊫ uses the decimal Unicode value 8875 to display the same character.
Named HTML Entity
⊫ is the HTML5 named entity for U+22AB. It is easy to read in source and resolves to the same character (⊫).
CSS Entity
\22AB is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce: ⊫. Unicode U+22AB. Standard turnstile: ⊢ (⊢). Do not confuse ⊫ with ⊢.
Use Cases
The Double Vertical Bar Double Right Turnstile (⊫) commonly appears in:
Derivability and entailment in formal logic and proof systems.
Sequent calculus rules and proof structures in papers and textbooks.
Formal methods, program verification, and specification documents.
Type systems, judgment forms, and typing rules in type theory.
Logic, proof theory, and formal methods in e-learning materials.
CS, logic, and philosophy papers using turnstile notation.
💡 Best Practices
Do
- Use
⊫for readable markup, or⊫/⊫ - Use math fonts (Cambria Math, STIX Two Math) for reliable rendering
- Distinguish
⊫(⊫) from⊢(⊢, single turnstile) - Add
aria-labelor nearby text for accessibility in logic notation - Use
\22ABonly inside CSScontent
Don’t
- Confuse
⊫with⊢(different Unicode characters) - Confuse ⊫ with ⊦ (assertion) or ⊨ (validity)
- Put CSS escape
\22ABin HTML text nodes - Forget UTF-8 (
<meta charset="utf-8">) on math pages - Assume every font includes Mathematical Operators
Key Takeaways
Named entity available: ⊫
⊫ ⊫For CSS stylesheets, use the escape in the content property
\22ABUnicode U+22AB DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE
Turnstile ⊢: U+22A2 via ⊢ or ⊢
Four methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
⊫ (hex), ⊫ (decimal), ⊫ (named entity), or \22AB in CSS content. All produce ⊫.U+22AB (DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE). Mathematical Operators block (U+2200–U+22FF). Hex 22AB, decimal 8875. Used in logic and proof theory.⊫, ⊫, or ⊫) go in markup. The CSS escape \22AB is used in stylesheets, typically in the content property of pseudo-elements.⊫ is easier to read in source than ⊫ or ⊫, but all produce ⊫. The named entity is part of the HTML5 entity set for mathematical operators.Explore More HTML Entities!
Discover 1500+ HTML character references — math symbols, letterlike glyphs, and more.
8 people found this page helpful
