HTML Entity for Succeeds (≻)

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

What You'll Learn

How to display the Succeeds symbol (≻) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+227B (SUCCEEDS) in the Mathematical Operators block (U+2200–U+22FF)—used for order relations in mathematics and order theory.

Render it with ≻, ≻, the named entity ≻, or CSS escape \227B. For example, ab means a succeeds b in a partial order. Do not confuse ≻ with ≺ (precedes, ≺) or > (greater-than).

⚡ Quick Reference — Succeeds

Unicode U+227B

Mathematical Operators

Hex Code ≻

Hexadecimal reference

HTML Code ≻

Decimal reference

Named Entity ≻

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+227B
Hex code       ≻
HTML code      ≻
Named entity   ≻
CSS code       \227B
Block          Mathematical Operators (U+2200–U+22FF)
Related        U+227A = Precedes (≺)
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\227B";
  }
 </style>
</head>
<body>
<p>Succeeds using Hexadecimal: &#x227B;</p>
<p>Succeeds using HTML Code: &#8827;</p>
<p>Succeeds using Named Entity: &sc;</p>
<p id="point">Succeeds using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Succeeds entity is universally supported in all modern browsers:

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

👀 Live Preview

See the Succeeds symbol (≻) rendered in different contexts:

Order relation aba succeeds b in the partial order
Large glyph
vs precedes ≻ succeeds   ≺ precedes
Monospace &#x227B; &#8827; &sc; \227B
Named entity &sc; → ≻

🧠 How It Works

1

Hexadecimal Code

&#x227B; uses the Unicode hexadecimal value 227B to display the Succeeds symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8827; uses the decimal Unicode value 8827 to display the same character. This is one of the most commonly used methods.

HTML markup
3

Named Entity

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

HTML markup
4

CSS Entity

\227B 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+227B in the Mathematical Operators block (U+2200–U+22FF).

Use Cases

The Succeeds symbol (≻) commonly appears in:

📐 Math Expressions

Equations with order relations and precedence.

🗃 Order Theory

Partial orders, lattices, and preference relations.

📚 Academic Content

Research papers, proofs, and scholarly articles.

📄 Scientific Docs

Technical documentation and math web applications.

🎓 Education

Online courses and tutorials on order theory.

💻 Math Software

Calculator interfaces and computational tool UIs.

📝 Research Papers

Conference proceedings and mathematical journals.

💡 Best Practices

Do

  • Use &sc; for readable source markup
  • Pick one style (hex / decimal / named) per project
  • Add aria-label for standalone symbols in math content
  • Test the glyph across browsers and fonts
  • Pair ≻ with plain text on first use

Don’t

  • Confuse ≻ (succeeds) with ≺ (precedes) or > (greater-than)
  • Mix entity styles randomly in one file
  • Use CSS escape \227B inside HTML text nodes
  • Use HTML entities in JS (use \u227B instead)
  • Assume all fonts render ≻ clearly at small sizes

Key Takeaways

1

Three HTML references all render ≻

&#x227B; &#8827; &sc;
2

For CSS stylesheets, use the escape in the content property

\227B
3

Unicode U+227B — SUCCEEDS

4

Prefer &sc; for readability—it’s the most self-descriptive named entity

5

Dual symbol: ≺ (precedes) with named entity &pr;

❓ Frequently Asked Questions

Use &#x227B; (hex), &#8827; (decimal), &sc; (named), or \227B in CSS content. All produce ≻.
U+227B (SUCCEEDS). Mathematical Operators block (U+2200–U+22FF). Hex 227B, decimal 8827.
In mathematical expressions, order theory notation, academic content, scientific documentation, educational materials, research papers, and any content representing order relations or precedence.
HTML entities (&#8827;, &#x227B;, or &sc;) go directly in markup. The CSS escape \227B is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
It indicates that one element succeeds another in a partial order—the first is greater than the second in the ordering. Common in preference theory, lattice theory, and ordered sets (e.g. ab).

Explore More HTML Entities!

Discover 1500+ HTML character references — order theory, 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