HTML Entity for Does Not Precede Or Equal (⋠)

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

What You'll Learn

How to display the Does Not Precede Or Equal symbol (⋠) in HTML using named, hexadecimal, decimal, and CSS entity methods. This character is U+22E0 (DOES NOT PRECEDE OR EQUAL) in the Mathematical Operators block (U+2200–U+22FF) and denotes that one element does not precede or equal another in a partial order—the negation of “precedes or equal” (≼, ≼).

Render it with the named entity ⋠, ⋠, ⋠, or CSS escape \22E0 in the content property. Do not confuse with ⪯̸ (does not precede, U+2280) or ∤ (does not divide, U+2224).

⚡ Quick Reference — Does Not Precede Or Equal

Unicode U+22E0

Mathematical Operators block

Hex Code ⋠

Hexadecimal reference

HTML Code ⋠

Decimal reference

Named Entity ⋠

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22E0
Hex code       ⋠
HTML code      ⋠
Named entity   ⋠
CSS code       \22E0
1

Complete HTML Example

This example demonstrates the symbol (⋠) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape on a pseudo-element:

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

🌐 Browser Support

U+22E0 is supported in modern browsers; use a font with Mathematical Operators coverage for consistent glyphs:

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

👀 Live Preview

See the Does Not Precede Or Equal symbol (⋠) in order-theoretic notation:

Partial order a ≼ b  •  a ⋠ b
Lattice theory Element does not precede or equal another: ⋠
Large glyph
vs precedes or equal ⋠ &nprcue;   ≼ &prcue;
Monospace refs &nprcue; &#x22E0; &#8928; \22E0

🧠 How It Works

1

Named Entity

&nprcue; is the HTML named entity for Does Not Precede Or Equal — the negation of &prcue; (precedes or equal, ≼).

HTML markup
2

Hexadecimal Code

&#x22E0; uses the Unicode hexadecimal value 22E0. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\22E0 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: . Unicode U+22E0 is the does-not-precede-or-equal relation. For precedes or equal (≼), use &prcue;.

Use Cases

The symbol (⋠) commonly appears in the following scenarios:

🔢 Order theory

When a ⋠ b means a does not precede or equal b in a partial order.

📐 Lattice theory

Posets and lattices where ≼ and ⋠ denote precedes-or-equal and its negation.

📚 Education

Discrete math courses teaching partial orders and relation symbols.

📝 Formula display

Web pages rendering mathematical notation with proper Unicode relations.

📝 Documentation

Entity references for order-theoretic symbols in HTML.

📑 Entity guides

HTML entity references for education and research.

💡 Best Practices

Do

  • Use &nprcue; for readable HTML source
  • Pair with &prcue; (≼) when teaching precedes-or-equal pairs
  • Use fonts that cover Mathematical Operators (U+2200–U+22FF)
  • Pair with text or ARIA (“does not precede or equal”)
  • Pick one entity style per project for consistency

Don’t

  • Confuse &nprcue; with &npre; (does not precede) or &nmid;
  • Swap &nprcue; and &prcue; (different relations)
  • Use CSS escape \22E0 inside HTML markup
  • Mix hex, decimal, and named styles randomly in one file
  • Rely on the symbol alone without accessible description

Key Takeaways

1

Three HTML references all render ⋠

&#x22E0; &#8928; &nprcue;
2

For CSS stylesheets, use the escape in the content property

\22E0
3

Unicode U+22E0 is DOES NOT PRECEDE OR EQUAL

4

Negation of ≼ precedes or equal (&prcue;)

❓ Frequently Asked Questions

Use &nprcue; (named), &#x22E0; (hex), &#8928; (decimal), or \22E0 in CSS content. All produce ⋠.
U+22E0 (hex 22E0, decimal 8928) in the Mathematical Operators block. It means “does not precede or equal” (negation of ≼).
In order theory, lattice theory, partial orders, and any content when one element does not precede or equal another.
⋠ (U+22E0, &nprcue;) means does not precede or equal. ≼ (U+227C, &prcue;) means precedes or equal. They are negations of each other.
No. &nprcue; is U+22E0 (does not precede or equal). &prcue; is U+227C (precedes or equal). &nmid; is U+2224 (does not divide). Each entity maps to a different symbol.

Explore More HTML Entities!

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