HTML Entity for Equal To Succeeds (⋟)

What You'll Learn
How to display the Equal To Succeeds (⋟) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+22DF (EQUAL TO OR SUCCEEDS) in the Mathematical Operators block (U+2200–U+22FF)—used when one value equals or succeeds another in order relations, lattice theory, and logic.
Render it with ⋟, ⋟, the named entity ⋟, or CSS escape \22DF. Do not confuse ⋟ with succeeds or equal (≽, U+227D) or with equal to precedes (⋞, ⋞). It is the dual of equal to precedes (⋞).
⚡ Quick Reference — Equal To Succeeds
U+22DFMathematical Operators
⋟Hexadecimal reference
⋟Decimal reference
⋟Equal to or succeeds
Name Value
──────────── ──────────
Unicode U+22DF
Hex code ⋟
HTML code ⋟
Named entity ⋟
CSS code \22DF
Related U+22DE = Equal to precedes (⋞ ⋞); U+227D = Succeeds or equal (≽)Complete HTML Example
This example demonstrates the Equal To Succeeds (⋟) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\22DF";
}
</style>
</head>
<body>
<p>Equal To Succeeds using Hexadecimal: ⋟</p>
<p>Equal To Succeeds using HTML Code: ⋟</p>
<p>Equal To Succeeds using HTML Entity: ⋟</p>
<p id="point">Equal To Succeeds using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Equal To Succeeds entity is universally supported in modern browsers:
👀 Live Preview
See the equal-to-succeeds symbol (⋟) in order-relation context and compared with its dual (⋟):
⋟ ⋟ vs ⋞ ⋞⋟ ⋟🧠 How It Works
Hexadecimal Code
⋟ uses the Unicode hexadecimal value 22DF to display this symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
⋟ uses the decimal Unicode value 8927 to display the same character.
Named Entity
⋟ is the semantic named entity for equal to or succeeds—easiest to read in order-relation markup.
CSS Entity
\22DF is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: ⋟. Unicode U+22DF in the Mathematical Operators block (U+2200–U+22FF).
Use Cases
The Equal To Succeeds (⋟) commonly appears in:
Partial orders where elements equal or succeed one another.
Math and logic courses with lattice and poset notation.
Formal proofs and comparisons in technical writing.
Semantics, type theory, and program-order documentation.
Papers publishing correct operator symbols in HTML.
Math operator and Unicode entity reference pages.
💡 Best Practices
Do
- Use
⋟for readable order-relation markup (U+22DF) - Use math-friendly fonts for clear ⋟ rendering
- Serve pages with UTF-8 (
<meta charset="utf-8">) - Pair with
⋞(⋞) when both directions matter - Add context when the symbol carries semantic meaning
Don’t
- Confuse ⋟ (
⋟) with ⋞ (⋞, precedes) - Use ⋟ when ≽ (succeeds or equal) is the intended symbol
- Put CSS escape
\22DFin HTML text nodes - Assume all fonts distinguish ⋟ and ≽ clearly
- Mix entity styles randomly in one file
Key Takeaways
Three HTML references plus CSS all render ⋟
⋟ ⋟ ⋟For CSS stylesheets, use the escape in the content property
\22DFUnicode U+22DF — EQUAL TO OR SUCCEEDS
⋟ is the standard named entity
Dual symbol: ⋞ (⋞, equal to precedes)
❓ Frequently Asked Questions
⋟ (hex), ⋟ (decimal), ⋟ (named), or \22DF in CSS content. All produce ⋟.U+22DF (EQUAL TO OR SUCCEEDS). Mathematical Operators block (U+2200–U+22FF). Hex 22DF, decimal 8927.⋟ renders ⋟ (U+22DF, equal to or succeeds). ⋞ renders ⋞ (U+22DE, equal to or precedes). They are paired dual operators in order notation.⋟, ⋟, or ⋟) go directly in markup. The CSS escape \22DF 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 — order relations, math operators, and more.
8 people found this page helpful
