HTML Entity for Square Original Of Or Equal To (⊒)

What You'll Learn
How to display Square Original Of Or Equal To (⊒) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+2292 (SQUARE ORIGINAL OF OR EQUAL TO) in the Mathematical Operators block (U+2200–U+22FF)—a set-theoretic relation indicating a square original with equality.
Render it with ⊒, ⊒, ⊒, or CSS \2292. Related to Square Original Of U+2290 (⊐, ⊐) and paired on the image side with Square Image Of Or Equal To U+2291 (⊑, ⊑).
⚡ Quick Reference — Square Original Of Or Equal To
U+2292Mathematical Operators
⊒Hexadecimal reference
⊒Decimal reference
⊒Most readable option
Name Value
──────────── ──────────
Unicode U+2292
Hex code ⊒
HTML code ⊒
Named entity ⊒
CSS code \2292
Meaning Square original of or equal to
Related U+2290 = square original of (⊐, ⊐)
Related U+2291 = square image of or equal to (⊑, ⊑)
Related U+22E5 = square original of not equal to (⋥)
Block Mathematical Operators (U+2200–U+22FF)Complete HTML Example
A simple example showing ⊒ using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\2292";
}
</style>
</head>
<body>
<p>Square original of or equal to (named): ⊒</p>
<p>Square original of or equal to (hex): ⊒</p>
<p>Square original of or equal to (decimal): ⊒</p>
<p id="point">Square original of or equal to (CSS): </p>
</body>
</html>🌐 Browser Support
Square Original Of Or Equal To (⊒) is supported in all modern browsers when fonts include Mathematical Operators glyphs:
👀 Live Preview
See the square original of or equal to symbol in mathematical contexts:
🧠 How It Works
Named HTML Entity
⊒ is the semantic named entity for the square original of or equal to relation—the most readable option in source HTML.
Hexadecimal Code
⊒ uses Unicode hexadecimal 2292 to display ⊒ in HTML markup.
Decimal HTML Code
⊒ uses decimal Unicode value 8850 for the same character.
CSS Entity
\2292 is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⊒. Unicode U+2292 in Mathematical Operators (U+2200–U+22FF).
Use Cases
Square Original Of Or Equal To (⊒) commonly appears in:
Square original relations that include equality between sets.
Equations and formulas using the or-equal-to square original operator.
Research on order theory, logic, and abstract algebra.
Tutorials on set relations and mathematical operators.
Scientific and engineering references with precise notation.
Web-based math tools displaying relation symbols.
💡 Best Practices
Do
- Use
⊒for readable source markup - Distinguish ⊒ (or equal) from ⊐ (original only,
⊐) - Pair with image-side ⊑ (
⊑) when documenting both relations - Pick one entity style (named, hex, or decimal) per project
- Test rendering with math-friendly fonts
Don’t
- Use padded Unicode notation like U+02292—the correct value is
U+2292 - Use CSS
\02292with a leading zero—prefer\2292 - Confuse
⊒with⊐or⊑ - Assume ⊒ and superset-or-equal ⊇ (
⊇) are the same operator - Put CSS escape
\2292in HTML text nodes
Key Takeaways
Four HTML/CSS references all render ⊒
⊒ ⊒ ⊒For CSS stylesheets, use \2292 in the content property
Unicode U+2292 — SQUARE ORIGINAL OF OR EQUAL TO (⊒)
⊒ is or-equal; ⊐ is original only (U+2290)
Previous: Square Original Of Not Equal To Next: Square Root
❓ Frequently Asked Questions
⊒ (named), ⊒ (hex), ⊒ (decimal), or \2292 in CSS content. All four render ⊒.U+2292 (SQUARE ORIGINAL OF OR EQUAL TO). Mathematical Operators (U+2200–U+22FF). Hex 2292, decimal 8850, named ⊒.⊒ renders ⊒ (U+2292, square original of or equal to). ⊐ renders ⊐ (U+2290, square original of). The or-equal variant includes equality in the relation.⊒, ⊒, or ⊒) go in markup. The CSS escape \2292 is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, symbols, and more.
8 people found this page helpful
