HTML Entity for Equal To Precedes (⋞)

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

What You'll Learn

How to display the Equal To Precedes (⋞) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+22DE (EQUAL TO OR PRECEDES) in the Mathematical Operators block (U+2200–U+22FF)—used when one value equals or precedes another in order relations, lattice theory, and logic.

Render it with ⋞, ⋞, the named entity ⋞, or CSS escape \22DE. Do not confuse ⋞ with precedes or equal (≼, U+227C) or with equal to succeeds (⋟, ⋟).

⚡ Quick Reference — Equal To Precedes

Unicode U+22DE

Mathematical Operators

Hex Code ⋞

Hexadecimal reference

HTML Code ⋞

Decimal reference

Named Entity ⋞

Equal to or precedes

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22DE
Hex code       ⋞
HTML code      ⋞
Named entity   ⋞
CSS code       \22DE
Related        U+22DF = Equal to succeeds (⋟ ⋟); U+227C = Precedes or equal (≼)
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\22DE";
  }
 </style>
</head>
<body>
<p>Equal To Precedes using Hexadecimal: &#x22DE;</p>
<p>Equal To Precedes using HTML Code: &#8926;</p>
<p>Equal To Precedes using HTML Entity: &cuepr;</p>
<p id="point">Equal To Precedes using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Equal To Precedes 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-precedes symbol (⋞) in order-relation context and compared with its dual (⋟):

Partial order ab
Large glyph
vs succeeds &cuepr; ⋞   vs   &cuesc;
Named entity &cuepr;
Numeric refs &#x22DE; &#8926; &cuepr;

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

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

HTML markup
4

CSS Entity

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

Use Cases

The Equal To Precedes (⋞) commonly appears in:

📐 Order theory

Partial orders where elements equal or precede 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 &cuepr; for readable order-relation markup (U+22DE)
  • Use math-friendly fonts for clear ⋞ rendering
  • Serve pages with UTF-8 (<meta charset="utf-8">)
  • Pair with &cuesc; (⋟) when both directions matter
  • Add context when the symbol carries semantic meaning

Don’t

  • Confuse ⋞ (&cuepr;) with ⋟ (&cuesc;, succeeds)
  • Use ⋞ when ≼ (precedes or equal) is the intended symbol
  • Put CSS escape \22DE 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 ⋞

&#x22DE; &#8926; &cuepr;
2

For CSS stylesheets, use the escape in the content property

\22DE
3

Unicode U+22DE — EQUAL TO OR PRECEDES

4

&cuepr; is the standard named entity

5

Dual symbol: ⋟ (&cuesc;, equal to succeeds)

❓ Frequently Asked Questions

Use &#x22DE; (hex), &#8926; (decimal), &cuepr; (named), or \22DE in CSS content. All produce ⋞.
U+22DE (EQUAL TO OR PRECEDES). Mathematical Operators block (U+2200–U+22FF). Hex 22DE, decimal 8926.
When your notation requires that one element equals or precedes another in a partial order, lattice, or similar mathematical structure.
&cuepr; renders ⋞ (U+22DE, equal to or precedes). &cuesc; renders ⋟ (U+22DF, equal to or succeeds). They are paired dual operators in order notation.
HTML entities (&#8926;, &#x22DE;, or &cuepr;) go directly in markup. The CSS escape \22DE 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