HTML Entity for Does Not Succeed Or Equal (⋡)

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

What You'll Learn

How to display the Does Not Succeed Or Equal symbol (⋡) in HTML using named, hexadecimal, decimal, and CSS entity methods. This character is U+22E1 (DOES NOT SUCCEED OR EQUAL) in the Mathematical Operators block (U+2200–U+22FF) and denotes that one element does not succeed or equal another in an order—the negation of “succeeds or equal” (⋟, ≽).

Render it with the named entity ⋡, ⋡, ⋡, or CSS escape \22E1 in the content property. Do not confuse with ⊁ (does not succeed, U+2281) or ∤ (does not divide, U+2224).

⚡ Quick Reference — Does Not Succeed Or Equal

Unicode U+22E1

Mathematical Operators block

Hex Code ⋡

Hexadecimal reference

HTML Code ⋡

Decimal reference

Named Entity ⋡

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22E1
Hex code       ⋡
HTML code      ⋡
Named entity   ⋡
CSS code       \22E1
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: "\22E1";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x22E1;</p>
<p>Using HTML Code: &#8929;</p>
<p>Using Named Entity: &nsccue;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+22E1 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 Succeed Or Equal symbol (⋡) in order-theoretic notation:

Order relation a ⋟ b  •  a ⋡ b
Lattice theory Element does not succeed or equal another: ⋡
Large glyph
vs succeeds or equal ⋡ &nsccue;   ⋟ &sccue;
Monospace refs &nsccue; &#x22E1; &#8929; \22E1

🧠 How It Works

1

Named Entity

&nsccue; is the HTML named entity for Does Not Succeed Or Equal — the negation of &sccue; (succeeds or equal, ⋟).

HTML markup
2

Hexadecimal Code

&#x22E1; uses the Unicode hexadecimal value 22E1. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\22E1 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+22E1 is the does-not-succeed-or-equal relation. For succeeds or equal (⋟), use &sccue;.

Use Cases

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

🔢 Order theory

When a ⋡ b means a does not succeed or equal b in a order relation.

📐 Lattice theory

Orders where ⋟ and ⋡ denote succeeds-or-equal and its negation.

📚 Education

Discrete math courses teaching order relations and relation symbols.

📝 Formula display

Web pages rendering mathematical notation with proper Unicode relations.

📝 Documentation

Entity references for order and comparison symbols in HTML.

📑 Entity guides

HTML entity references for education and research.

💡 Best Practices

Do

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

Don’t

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

Key Takeaways

1

Four methods all render ⋡

&#x22E1; &#8929; &nsccue;
2

For CSS stylesheets, use the escape in the content property

\22E1
3

Unicode U+22E1 is DOES NOT SUCCEED OR EQUAL

4

Negation of ⋟ succeeds or equal (&sccue;)

❓ Frequently Asked Questions

Use &nsccue; (named), &#x22E1; (hex), &#8929; (decimal), or \22E1 in CSS content. All produce ⋡.
U+22E1 (hex 22E1, decimal 8929) in the Mathematical Operators block. It means “does not succeed or equal” (negation of ⋟).
In order theory, lattice theory, order relations, and any content when one element does not succeed or equal another.
⋡ (U+22E1, &nsccue;) means does not succeed or equal. ⋟ (U+22DF, &sccue;) means succeeds or equal. They are negations of each other.
No. &nsccue; is U+22E1 (does not succeed or equal). &sccue; is U+22DF (succeeds 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