HTML Entity for Succeeds Under Relation (⊱)

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

What You'll Learn

How to display the Succeeds Under Relation symbol (⊱) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+22B1 (SUCCEEDS UNDER RELATION) in the Mathematical Operators block (U+2200–U+22FF)—used when one element succeeds another under a given relation in order theory.

Render it with ⊱, ⊱, or CSS escape \22B1. There is no named HTML entity. Do not confuse ⊱ with ≻ (succeeds, ≻) or ⊰ (precedes under relation, ⊰).

⚡ Quick Reference — Succeeds Under Relation

Unicode U+22B1

Mathematical Operators

Hex Code ⊱

Hexadecimal reference

HTML Code ⊱

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22B1
Hex code       ⊱
HTML code      ⊱
Named entity   (none)
CSS code       \22B1
Block          Mathematical Operators (U+2200–U+22FF)
Related        U+22B0 = Precedes Under Relation (⊰)
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\22B1";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x22B1;</p>
<p>Using HTML Code: &#8881;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Succeeds Under Relation 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 Under Relation symbol (⊱) rendered in different contexts:

Order relation aba succeeds b under the relation
Large glyph
vs dual symbol ⊱ succeeds under   ⊰ precedes under
Monospace &#x22B1; &#8881; \22B1
No named entity Use ⊱ via numeric codes only

🧠 How It Works

1

Hexadecimal Code

&#x22B1; uses the Unicode hexadecimal value 22B1 to display the symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\22B1 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+22B1 in the Mathematical Operators block (U+2200–U+22FF). No named entity.

Use Cases

The Succeeds Under Relation symbol (⊱) commonly appears in:

📐 Math Expressions

Equations and formulas with order relations.

🗃 Order Theory

Ordering relationships between elements under a relation.

📚 Academic Content

Research papers, proofs, and scholarly articles.

📄 Scientific Docs

Technical documentation and math web applications.

🎓 Education

Online courses and tutorials on order theory and logic.

💻 Math Software

Calculator interfaces and computational tool UIs.

📝 Research Papers

Conference proceedings and mathematical journals.

💡 Best Practices

Do

  • Use &#x22B1; or &#8881; for relation notation
  • Pick one style (hex or decimal) per project for consistency
  • 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 under relation) with ≻ (succeeds) or ⊰ (precedes under)
  • Put CSS escape \22B1 directly in HTML text nodes
  • Expect a named HTML entity for U+22B1—use numeric references
  • Use HTML entities in JS (use \u22B1 instead)
  • Assume all fonts render ⊱ clearly at small sizes

Key Takeaways

1

Two HTML references both render ⊱

&#x22B1; &#8881;
2

For CSS stylesheets, use the escape in the content property

\22B1
3

Unicode U+22B1 — SUCCEEDS UNDER RELATION

4

No named entity—use numeric references or CSS escape

5

Dual symbol: ⊰ (precedes under relation)

❓ Frequently Asked Questions

Use &#x22B1; (hex), &#8881; (decimal), or \22B1 in CSS content. There is no named HTML entity. All three produce ⊱.
U+22B1 (SUCCEEDS UNDER RELATION). Mathematical Operators block (U+2200–U+22FF). Hex 22B1, decimal 8881.
In mathematical expressions, order theory notation, academic content, scientific documentation, mathematical web applications, educational materials, research papers, and any content requiring precise relation notation.
HTML numeric references (&#8881; or &#x22B1;) go directly in markup. The CSS escape \22B1 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named HTML entities cover common ASCII, Latin-1, and select math symbols. Characters like ⊱ in the Mathematical Operators block use numeric hex or decimal references—standard practice for specialized relation symbols.

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