HTML Entity for Does Not Precede Or Equal (⋠)

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
U+22E0Mathematical Operators block
⋠Hexadecimal reference
⋠Decimal reference
⋠Most readable option
Name Value
──────────── ──────────
Unicode U+22E0
Hex code ⋠
HTML code ⋠
Named entity ⋠
CSS code \22E0Complete 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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\22E0";
}
</style>
</head>
<body>
<p>Using Hexadecimal: ⋠</p>
<p>Using HTML Code: ⋠</p>
<p>Using Named Entity: ⋠</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+22E0 is supported in modern browsers; use a font with Mathematical Operators coverage for consistent glyphs:
👀 Live Preview
See the Does Not Precede Or Equal symbol (⋠) in order-theoretic notation:
🧠 How It Works
Named Entity
⋠ is the HTML named entity for Does Not Precede Or Equal — the negation of ≼ (precedes or equal, ≼).
Hexadecimal Code
⋠ uses the Unicode hexadecimal value 22E0. The x prefix indicates hexadecimal format.
Decimal HTML Code
⋠ uses the decimal Unicode value 8928 to display the same character.
CSS Entity
\22E0 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce: ⋠. Unicode U+22E0 is the does-not-precede-or-equal relation. For precedes or equal (≼), use ≼.
Use Cases
The symbol (⋠) commonly appears in the following scenarios:
When a ⋠ b means a does not precede or equal b in a partial order.
Posets and lattices where ≼ and ⋠ denote precedes-or-equal and its negation.
Discrete math courses teaching partial orders and relation symbols.
Web pages rendering mathematical notation with proper Unicode relations.
Entity references for order-theoretic symbols in HTML.
HTML entity references for education and research.
💡 Best Practices
Do
- Use
⋠for readable HTML source - Pair with
≼(≼) 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
⋠with⪯̸(does not precede) or∤ - Swap
⋠and≼(different relations) - Use CSS escape
\22E0inside HTML markup - Mix hex, decimal, and named styles randomly in one file
- Rely on the symbol alone without accessible description
Key Takeaways
Three HTML references all render ⋠
⋠ ⋠ ⋠For CSS stylesheets, use the escape in the content property
\22E0Unicode U+22E0 is DOES NOT PRECEDE OR EQUAL
Negation of ≼ precedes or equal (≼)
Next: Does Not Prove
❓ Frequently Asked Questions
⋠ (named), ⋠ (hex), ⋠ (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 ≼).U+22E0, ⋠) means does not precede or equal. ≼ (U+227C, ≼) means precedes or equal. They are negations of each other.⋠ is U+22E0 (does not precede or equal). ≼ is U+227C (precedes or equal). ∤ 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.
8 people found this page helpful
