HTML Entity for Does Not Succeed (⊁)

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

What You'll Learn

How to display the Does Not Succeed symbol (⊁) in HTML using named, hexadecimal, decimal, and CSS entity methods. This character is U+2281 (DOES NOT SUCCEED) in the Mathematical Operators block (U+2200–U+22FF) and denotes that one element does not succeed another in an order—the negation of “succeeds” (≿, &Succ;).

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

⚡ Quick Reference — Does Not Succeed

Unicode U+2281

Mathematical Operators block

Hex Code ⊁

Hexadecimal reference

HTML Code ⊁

Decimal reference

Named Entity ⊁

Most readable option

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

🌐 Browser Support

U+2281 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 symbol (⊁) in order-theoretic notation:

Succession a ≿ b  •  a ⊁ b
Relation theory Element does not succeed another: ⊁
Large glyph
vs succeeds ⊁ &nsc;   ≿ &Succ;
Monospace refs &nsc; &#x2281; &#8833; \2281

🧠 How It Works

1

Named Entity

&nsc; is the HTML named entity for Does Not Succeed — the negation of &Succ; (succeeds, ≿).

HTML markup
2

Hexadecimal Code

&#x2281; uses the Unicode hexadecimal value 2281. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\2281 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+2281 is the does-not-succeed relation. For succeeds (≿), use &Succ;.

Use Cases

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

🔢 Order theory

When a ⊁ b means a does not succeed b in an order.

📐 Relation theory

Ordered sets and relations where ≿ and ⊁ denote succeeds and its negation.

📚 Education

Discrete math courses teaching succeeds and does-not-succeed symbols.

📝 Formula display

Web pages rendering mathematical notation with proper Unicode relations.

📝 Documentation

Entity references for order and relation symbols in HTML.

📑 Entity guides

HTML entity references for education and research.

💡 Best Practices

Do

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

Don’t

  • Confuse &nsc; with &npre; (does not precede) or &sup; (superset)
  • Swap &nsc; and &Succ; (different relations)
  • Use CSS escape \2281 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 ⊁

&#x2281; &#8833; &nsc;
2

For CSS stylesheets, use the escape in the content property

\2281
3

Unicode U+2281 is DOES NOT SUCCEED

4

Negation of ≿ succeeds (&Succ;)

❓ Frequently Asked Questions

Use &nsc; (named), &#x2281; (hex), &#8833; (decimal), or \2281 in CSS content. All produce ⊁.
U+2281 (hex 2281, decimal 8833) in the Mathematical Operators block. It means “does not succeed” (negation of ≿).
In order theory, relation theory, discrete math, and any content when one element does not succeed another.
⊁ (U+2281, &nsc;) means does not succeed. ≿ (U+227F, &Succ;) means succeeds. They are negations of each other.
No. &nsc; is U+2281 (does not succeed). &Succ; is U+227F (succeeds). &nmid; is U+2224 (does not divide). Each entity maps to a different symbol.

Explore More HTML Entities!

Discover 1500+ HTML character references — succession 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