HTML Entity for Precedes Under Relation (⊰)

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

What You'll Learn

How to display the precedes under relation symbol (⊰) in HTML using hexadecimal, decimal, and CSS escape methods. This operator expresses that one element precedes another under a specified relation—used in order theory, relational algebra, and advanced mathematical notation.

This character is part of the Mathematical Operators Unicode block and can be rendered with ⊰, ⊰, or CSS \22B0. There is no named HTML entity for this symbol. Do not confuse ⊰ with U+227A (≺, strict precedes) or U+22B1 (⊱, succeeds under relation).

⚡ Quick Reference — Precedes Under Relation

Unicode U+22B0

Mathematical Operators block

Hex Code ⊰

Hexadecimal reference

HTML Code ⊰

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22B0
Hex code       ⊰
HTML code      ⊰
Named entity   (none)
CSS code       \22B0
Meaning        Precedes under relation
Related        U+227A = Precedes (≺)
               U+22B1 = Succeeds under relation (⊱)
               U+227E = Precedes or equivalent (≾)
Block          Mathematical Operators (U+2200–U+22FF)
1

Complete HTML Example

A simple example showing ⊰ using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\22B0";
  }
 </style>
</head>
<body>
<p>Relation (hex): S &#x22B0; T</p>
<p>Relation (decimal): S &#8880; T</p>
<p>Relation (CSS): S <span id="point"></span> T</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The precedes under relation symbol 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 ⊰ rendered live in different contexts:

Inline relation ST (precedes under relation)
Large glyph
Compared to Precedes ≺  |  Precedes or equivalent ≾
Dual symbol Succeeds under relation ⊱
Numeric refs &#x22B0; &#8880; \22B0

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\22B0 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: . Unicode U+22B0 in the Mathematical Operators block (U+2200–U+22FF). No named HTML entity exists.

Use Cases

The precedes under relation symbol (⊰) commonly appears in:

📐 Order Theory

Relations where precedence is defined relative to an underlying order.

📄 Academic Papers

Research on lattices, posets, and relational algebra notation.

🧮 Relational Algebra

Database theory and formal relation notation in technical documents.

💻 Math Documentation

Online references and wikis on advanced relation operators.

📋 Unicode References

Character tables and Mathematical Operators guides.

🎓 Education

University courses teaching specialized relation notation in HTML.

♿ Accessibility

Pair ⊰ with a plain-language explanation on first use.

💡 Best Practices

Do

  • Use &#x22B0; or &#8880; for readable numeric markup
  • Distinguish ⊰ from ≺ (precedes) and ⊱ (succeeds under relation)
  • Pick one style (hex or decimal) per project
  • Use MathML or LaTeX for complex multi-line formulas when appropriate
  • Test rendering across browsers and math fonts

Don’t

  • Assume a named entity exists—there is none for ⊰
  • Substitute ≺ (&pr;) when ⊰ is the intended operator
  • Confuse ⊰ with ⊱ (succeeds under relation)
  • Use CSS escape \22B0 inside HTML text nodes
  • Use HTML entities in JS (use \u22B0 instead)

Key Takeaways

1

Two HTML numeric references render ⊰

&#x22B0; &#8880;
2

For CSS stylesheets, use the escape in the content property

\22B0
3

Unicode U+22B0 belongs to the Mathematical Operators block (U+2200–U+22FF)

4

No named HTML entity—use numeric codes or CSS escape only

❓ Frequently Asked Questions

Use &#x22B0; (hex), &#8880; (decimal), or \22B0 in CSS content. There is no named HTML entity for this symbol.
U+22B0 (PRECEDES UNDER RELATION). Mathematical Operators block. Hex 22B0, decimal 8880.
No. Use numeric references &#x22B0; or &#8880;, or the CSS escape \22B0.
≺ (U+227A, &pr;) is strict precedes. ⊰ (U+22B0) is precedes under relation—a specialized operator indicating precedence relative to an underlying relation.
In mathematical notation, order theory, relational algebra, academic papers, and any content requiring the ⊰ operator.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, 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