HTML Entity for Not Square Image Of Equal To (⋢)

What You'll Learn
How to display the Not Square Image Of Equal To symbol (⋢) in HTML using named, hexadecimal, decimal, and CSS escape methods. This operator negates the “square image of or equal” relation used in order theory and formal mathematics.
This character is U+22E2 (NOT SQUARE IMAGE OF OR EQUAL TO) in the Mathematical Operators block (U+2200–U+22FF). Render it with the named entity ⋢, ⋢, ⋢, or CSS escape \22E2. Compare with Not Equal To (≠, ≠) and the paired symbol square image of or equal to (⊑, ⊑).
⚡ Quick Reference — Not Square Image Of Equal To
U+22E2Mathematical Operators
⋢Hexadecimal reference
⋢Decimal reference
⋢HTML5 named entity for U+22E2
Name Value
──────────── ──────────
Unicode U+22E2
Hex code ⋢
HTML code ⋢
Named entity ⋢
CSS code \22E2
Meaning Not square image of or equal to
Related U+2291 = square image of or equal (⊑, ⊑)
U+22E3 = not square original of or equal (⋣, ⋣)
U+2260 = not equal to (≠, ≠)
Block Mathematical Operators (U+2200–U+22FF)Complete HTML Example
A simple example showing ⋢ using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\22E2";
}
</style>
</head>
<body>
<p>Symbol (hex): ⋢</p>
<p>Symbol (decimal): ⋢</p>
<p>Symbol (named): ⋢</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
U+22E2 is widely supported wherever Unicode Mathematical Operators render correctly:
👀 Live Preview
See ⋢ in order theory and relation notation:
🧠 How It Works
Named Entity
⋢ is the HTML named entity for U+22E2—the most readable choice when writing mathematical relation markup.
Hexadecimal Code
⋢ uses the Unicode hexadecimal value 22E2 to display the not-square-image-of-equal symbol.
Decimal HTML Code
⋢ uses the decimal Unicode value 8930 to display the same character.
CSS Entity
\22E2 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+22E2 in Mathematical Operators (U+2200–U+22FF).
Use Cases
The ⋢ symbol (⋢) is commonly used in:
Negating the square-image-of-or-equal relation between elements.
Formal definitions and proofs involving partial orders and relations.
Textbooks, papers, and lecture notes on lattice and order notation.
Discrete math and formal methods courses with web-based notation.
Interactive math modules covering relations and partial orders.
Unicode charts and HTML entity documentation for math symbols.
💡 Best Practices
Do
- Use
⋢for readable relation markup - Distinguish ⋢ from ≠ (not equal,
≠) and from ⋣ (not square original of or equal) - Pair ⋢ with plain-language description on first use
- Use numeric references in generated or XML-first workflows
- Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse ⋢ with ≠ (
≠, general not equal) - Confuse
⋢with⋣(⋣, opposite orientation) - Use padded Unicode notation like U+022E2—the correct value is
U+22E2 - Put CSS escape
\22E2in HTML text nodes - Use
\022E2in CSS—the correct escape is\22E2
Key Takeaways
Three HTML references plus CSS all render ⋢
⋢ ⋢ ⋢For CSS stylesheets, use the escape in the content property
\22E2Unicode U+22E2 — NOT SQUARE IMAGE OF OR EQUAL TO
Mathematical Operators block (U+2200–U+22FF)
⋢ is the preferred named entity for readable source markup
❓ Frequently Asked Questions
⋢ (named), ⋢ (hex), ⋢ (decimal), or \22E2 in CSS content. All produce ⋢.U+22E2 (NOT SQUARE IMAGE OF OR EQUAL TO). Mathematical Operators block (U+2200–U+22FF). Hex 22E2, decimal 8930. Named entity: ⋢.≠) for general numeric or value inequality. They represent different mathematical concepts.⋢, ⋢, or ⋢) go directly in markup. The CSS escape \22E2 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.⋢ is the named HTML entity for U+22E2 and is the most readable option in mathematical markup.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, and more.
8 people found this page helpful
