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

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

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

Unicode U+2291

Mathematical Operators

Hex Code ⊑

Hexadecimal reference

HTML Code ⊑

Decimal reference

Named Entity ⊑

Most readable option

Reference Table
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)
1

Complete HTML Example

A simple example showing ⊑ using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2291";
  }
 </style>
</head>
<body>
<p>Square image of or equal to (named): &sqsube;</p>
<p>Square image of or equal to (hex): &#x2291;</p>
<p>Square image of or equal to (decimal): &#8849;</p>
<p id="point">Square image of or equal to (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

Square Image Of Or Equal To (⊑) is supported in all modern browsers when fonts include Mathematical Operators glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the square image of or equal to symbol in mathematical contexts:

Single symbol
Set notation A ⊑ B (square image of or equal to)
Related symbols Image ⊏  |  Or equal ⊑  |  Not equal ⋤
Named entity &sqsube; renders as ⊑
Numeric refs &sqsube; &#x2291; &#8849; \2291

🧠 How It Works

1

Named HTML Entity

&sqsube; is the semantic named entity for the square image of or equal to relation—the most readable option in source HTML.

HTML markup
2

Hexadecimal Code

&#x2291; uses Unicode hexadecimal 2291 to display ⊑ in HTML markup.

HTML markup
3

Decimal HTML Code

&#8849; uses decimal Unicode value 8849 for the same character.

HTML markup
4

CSS Entity

\2291 is used in CSS stylesheets in the content property of pseudo-elements like ::after.

CSS stylesheet
=

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:

📊 Set theory

Square image relations that include equality between sets.

📐 Mathematical notation

Equations and formulas using the or-equal-to square image operator.

📚 Academic papers

Research on order theory, logic, and abstract algebra.

🏫 Educational content

Tutorials on set relations and mathematical operators.

📄 Technical documentation

Scientific and engineering references with precise notation.

🛠 Formula editors

Web-based math tools displaying relation symbols.

💡 Best Practices

Do

  • Use &sqsube; for readable source markup
  • Distinguish ⊑ (or equal) from ⊏ (image only, &sqsub;)
  • 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 \02291 with a leading zero—prefer \2291
  • Confuse &sqsube; with &sqsub; or &sqsupe;
  • Assume ⊑ and subset-or-equal ⊆ (&sube;) are the same operator
  • Put CSS escape \2291 in HTML text nodes

Key Takeaways

1

Four HTML/CSS references all render ⊑

&sqsube; &#x2291; &#8849;
2

For CSS stylesheets, use \2291 in the content property

3

Unicode U+2291 — SQUARE IMAGE OF OR EQUAL TO (⊑)

4

&sqsube; is or-equal; &sqsub; is image only (U+228F)

❓ Frequently Asked Questions

Use &sqsube; (named), &#x2291; (hex), &#8849; (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 &sqsube;.
&sqsube; renders ⊑ (U+2291, square image of or equal to). &sqsub; renders ⊏ (U+228F, square image of). The or-equal variant includes equality in the relation.
For mathematical notation, set theory, square image relations with equality, technical documentation, academic papers, and educational content that need this operator.
HTML references (&sqsube;, &#8849;, or &#x2291;) 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.

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