HTML Entity for Equal To Succeeds (⋟)

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

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

Unicode U+22DF

Mathematical Operators

Hex Code ⋟

Hexadecimal reference

HTML Code ⋟

Decimal reference

Named Entity ⋟

Equal to or succeeds

Reference Table
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 (≽)
1

Complete HTML Example

This example demonstrates the Equal To Succeeds (⋟) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\22DF";
  }
 </style>
</head>
<body>
<p>Equal To Succeeds using Hexadecimal: &#x22DF;</p>
<p>Equal To Succeeds using HTML Code: &#8927;</p>
<p>Equal To Succeeds using HTML Entity: &cuesc;</p>
<p id="point">Equal To Succeeds using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Equal To Succeeds entity is universally supported in modern browsers:

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

👀 Live Preview

See the equal-to-succeeds symbol (⋟) in order-relation context and compared with its dual (⋟):

Partial order ab
Large glyph
vs precedes &cuesc; ⋟   vs   &cuepr;
Named entity &cuesc;
Numeric refs &#x22DF; &#8927; &cuesc;

🧠 How It Works

1

Hexadecimal Code

&#x22DF; uses the Unicode hexadecimal value 22DF to display this symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&cuesc; is the semantic named entity for equal to or succeeds—easiest to read in order-relation markup.

HTML markup
4

CSS Entity

\22DF 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 the glyph: . Unicode U+22DF in the Mathematical Operators block (U+2200–U+22FF).

Use Cases

The Equal To Succeeds (⋟) commonly appears in:

📐 Order theory

Partial orders where elements equal or succeed one another.

🎓 Education

Math and logic courses with lattice and poset notation.

📝 Logic

Formal proofs and comparisons in technical writing.

💻 CS theory

Semantics, type theory, and program-order documentation.

📰 Research

Papers publishing correct operator symbols in HTML.

🌐 Symbol guides

Math operator and Unicode entity reference pages.

💡 Best Practices

Do

  • Use &cuesc; 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 &cuepr; (⋞) when both directions matter
  • Add context when the symbol carries semantic meaning

Don’t

  • Confuse ⋟ (&cuesc;) with ⋞ (&cuepr;, precedes)
  • Use ⋟ when ≽ (succeeds or equal) is the intended symbol
  • Put CSS escape \22DF in HTML text nodes
  • Assume all fonts distinguish ⋟ and ≽ clearly
  • Mix entity styles randomly in one file

Key Takeaways

1

Three HTML references plus CSS all render ⋟

&#x22DF; &#8927; &cuesc;
2

For CSS stylesheets, use the escape in the content property

\22DF
3

Unicode U+22DF — EQUAL TO OR SUCCEEDS

4

&cuesc; is the standard named entity

5

Dual symbol: ⋞ (&cuepr;, equal to precedes)

❓ Frequently Asked Questions

Use &#x22DF; (hex), &#8927; (decimal), &cuesc; (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.
When your notation requires that one element equals or succeeds another in a partial order, lattice, or similar mathematical structure.
&cuesc; renders ⋟ (U+22DF, equal to or succeeds). &cuepr; renders ⋞ (U+22DE, equal to or precedes). They are paired dual operators in order notation.
HTML entities (&#8927;, &#x22DF;, or &cuesc;) 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.

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