HTML Entity for Square Image Of (⊏)

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

What You'll Learn

How to display the Square Image Of (⊏) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+228F (SQUARE IMAGE OF) in the Mathematical Operators block (U+2200–U+22FF)—a set-theoretic operator indicating a square image (subset-like) relationship.

Render it with ⊏, ⊏, ⊏, or CSS \228F. Paired with square original of U+2290 (⊐, ⊐) and distinct from ordinary subset U+2282 (⊂, ⊂).

⚡ Quick Reference — Square Image Of

Unicode U+228F

Mathematical Operators

Hex Code ⊏

Hexadecimal reference

HTML Code ⊏

Decimal reference

Named Entity ⊏

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+228F
Hex code       ⊏
HTML code      ⊏
Named entity   ⊏
CSS code       \228F
Meaning        Square image of (subset-like)
Paired with    U+2290 = square original of (⊐, ⊐)
Not the same   U+2282 = subset (⊂)
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: "\228F";
  }
 </style>
</head>
<body>
<p>Square image of (named): &sqsub;</p>
<p>Square image of (hex): &#x228F;</p>
<p>Square image of (decimal): &#8847;</p>
<p id="point">Square image of (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Square Image Of (⊏) 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 symbol in mathematical contexts:

Single symbol
Set notation A ⊏ B (square image of)
Image and original Image ⊏  |  Original ⊐
Named entity &sqsub; renders as ⊏
Numeric refs &sqsub; &#x228F; &#8847; \228F

🧠 How It Works

1

Named HTML Entity

&sqsub; is the semantic named entity for the square image of operator—the most readable option in source HTML.

HTML markup
2

Hexadecimal Code

&#x228F; uses Unicode hexadecimal 228F to display ⊏ in HTML markup.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\228F 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+228F in Mathematical Operators (U+2200–U+22FF).

Use Cases

The Square Image Of (⊏) commonly appears in:

📊 Set theory

Square image and subset-like relationships between sets.

📐 Mathematical notation

Equations and formulas using the square image of 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 operator symbols.

💡 Best Practices

Do

  • Use &sqsub; for readable source markup
  • Distinguish ⊏ (square image) from ⊂ (subset, &sub;)
  • 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

  • Confuse &sqsub; (⊏) with &sqsup; (⊐, square original of)
  • Use padded Unicode notation like U+0228F—the correct value is U+228F
  • Put CSS escape \228F in HTML text nodes
  • Assume ⊏ and ⊂ are interchangeable in formal notation
  • Mix entity styles randomly in one file

Key Takeaways

1

Four HTML/CSS references all render ⊏

&sqsub; &#x228F; &#8847;
2

For CSS stylesheets, use \228F in the content property

3

Unicode U+228F — SQUARE IMAGE OF (⊏)

4

&sqsub; is image; &sqsup; is original (U+2290)

❓ Frequently Asked Questions

Use &sqsub; (named), &#x228F; (hex), &#8847; (decimal), or \228F in CSS content. All four render ⊏.
U+228F (SQUARE IMAGE OF). Mathematical Operators (U+2200–U+22FF). Hex 228F, decimal 8847, named &sqsub;.
&sqsub; renders ⊏ (U+228F, square image of). &sqsup; renders ⊐ (U+2290, square original of). They are paired operators in set notation.
For mathematical notation, set theory, subset and image relationships, technical documentation, academic papers, and educational content that need the square image of operator.
HTML references (&sqsub;, &#8847;, or &#x228F;) go in markup. The CSS escape \228F 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