HTML Entity for Square Image Of Or Equal To (⊑)

What You'll Learn
How to display Square Image Of Or Equal To (⊑) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+2291 (SQUARE IMAGE OF OR EQUAL TO) in the Mathematical Operators block (U+2200–U+22FF)—a set-theoretic relation indicating a square image with equality.
Render it with ⊑, ⊑, ⊑, or CSS \2291. Related to Square Image Of U+228F (⊏, ⊏) and distinct from Square Image Of Not Equal To U+22E4 (⋤).
⚡ Quick Reference — Square Image Of Or Equal To
U+2291Mathematical Operators
⊑Hexadecimal reference
⊑Decimal reference
⊑Most readable option
Name Value
──────────── ──────────
Unicode U+2291
Hex code ⊑
HTML code ⊑
Named entity ⊑
CSS code \2291
Meaning Square image of or equal to
Related U+228F = square image of (⊏, ⊏)
Related U+22E4 = square image 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: "\2291";
}
</style>
</head>
<body>
<p>Square image of or equal to (named): ⊑</p>
<p>Square image of or equal to (hex): ⊑</p>
<p>Square image of or equal to (decimal): ⊑</p>
<p id="point">Square image of or equal to (CSS): </p>
</body>
</html>🌐 Browser Support
Square Image Of Or Equal To (⊑) is supported in all modern browsers when fonts include Mathematical Operators glyphs:
👀 Live Preview
See the square image of or equal to symbol in mathematical contexts:
🧠 How It Works
Named HTML Entity
⊑ is the semantic named entity for the square image of or equal to relation—the most readable option in source HTML.
Hexadecimal Code
⊑ uses Unicode hexadecimal 2291 to display ⊑ in HTML markup.
Decimal HTML Code
⊑ uses decimal Unicode value 8849 for the same character.
CSS Entity
\2291 is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⊑. Unicode U+2291 in Mathematical Operators (U+2200–U+22FF).
Use Cases
Square Image Of Or Equal To (⊑) commonly appears in:
Square image relations that include equality between sets.
Equations and formulas using the or-equal-to square image 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 ⊏ (image only,
⊏) - Add context text when the symbol stands alone in educational content
- Pick one entity style (named, hex, or decimal) per project
- Test rendering with math-friendly fonts
Don’t
- Use padded Unicode notation like U+02291—the correct value is
U+2291 - Use CSS
\02291with a leading zero—prefer\2291 - Confuse
⊑with⊏or⊒ - Assume ⊑ and subset-or-equal ⊆ (
⊆) are the same operator - Put CSS escape
\2291in HTML text nodes
Key Takeaways
Four HTML/CSS references all render ⊑
⊑ ⊑ ⊑For CSS stylesheets, use \2291 in the content property
Unicode U+2291 — SQUARE IMAGE OF OR EQUAL TO (⊑)
⊑ is or-equal; ⊏ is image only (U+228F)
Previous: Square Image Of Not Equal To Next: Square Original Of
❓ Frequently Asked Questions
⊑ (named), ⊑ (hex), ⊑ (decimal), or \2291 in CSS content. All four render ⊑.U+2291 (SQUARE IMAGE OF OR EQUAL TO). Mathematical Operators (U+2200–U+22FF). Hex 2291, decimal 8849, named ⊑.⊑ renders ⊑ (U+2291, square image of or equal to). ⊏ renders ⊏ (U+228F, square image of). The or-equal variant includes equality in the relation.⊑, ⊑, or ⊑) go in markup. The CSS escape \2291 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
