HTML Entity for Square Image Of (⊏)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+228F

What Is Square Image Of?

Square image of (⊏) is the Unicode character at U+228F in Mathematical Operators. Official name: SQUARE IMAGE OF. It is a square-style “image of” / subset-like relation used in specialized math notation.

Remember
Character     ⊏
Unicode       U+228F
Named entity  ⊏
Hex entity    ⊏
Decimal       ⊏
CSS escape    \228F
Not the same  ⊂ · ⊐ · ⊑

Prefer ⊏ in HTML markup (⊏ is an alias). You can also type ⊏ in UTF-8, or use numeric forms when needed. For ordinary subset, use ⊂ (⊂) instead.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entity⊏HTML markup (preferred)
Alias⊏Same glyph as ⊏
Direct character⊏HTML text (UTF-8)
Hex entity⊏HTML markup
Decimal entity⊏HTML markup
CSS escape\228FStylesheet content
Subset (related)⊂ (U+2282)Named ⊂

When to Use Which

SituationUse
Square image of / square subset-style⊏ or type ⊏
Ordinary subset⊂ (⊂)
Square original of (dual)⊐ (⊐)
Square image of or equal to⊑
Generated text via ::before / ::aftercontent: "\228F"

Live Preview

Square image of rendered alone and in short math notation.

Large glyph ⊏
Notation A ⊏ B
Compared ⊏ (sqsub)  |  ⊂ (sub)  |  ⊐ (sqsup)
Hint Compare: Image ⊏ vs Original ⊐
With entities Named: ⊏ | Hex: ⊏ | Decimal: ⊏

Complete HTML Example

One page that shows square image of with named, hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Named + Hex + Decimal + CSS + Typed

Five ways to produce ⊏, plus a short notation example.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Square Image Of (⊏) in HTML</title>
  <style>
    #point::after {
      content: "\228F";
    }
  </style>
</head>
<body>
  <p>Using Named Entity: &sqsub;</p>
  <p>Using Hex Code: &#x228F;</p>
  <p>Using HTML Code: &#8847;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: ⊏</p>
  <p>Notation: A &sqsub; B</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &sqsub; is the HTML5 name for U+228F → ⊏. Best default in markup.

2. Hex: U+228F → &#x228F; in HTML. Same glyph as the named form.

3. Decimal: same code point as 8847 → &#8847;. Same result as hex and named.

4. CSS: use \228F in content (not an HTML entity). #point::after appends that ⊏ after the paragraph text.

5. Typed / notation: paste ⊏ in UTF-8, or write A &sqsub; B for a short relation.

Pitfalls & Tips

Common mistakes when working with &sqsub;.

vs ⊂

Not ordinary subset

U+2282 (⊂, &sub;) is the common subset symbol. U+228F is the square-style image-of form.

vs ⊐

Not square original of

⊐ (U+2290, &sqsup;) is the dual relation. Do not swap it with &sqsub;.

Name

Remember &sqsub;

The named entity is &sqsub; — not &sub; (that is U+2282).

CSS vs HTML

Do not mix escapes

\228F belongs in CSS strings. &sqsub; / &#x228F; / &#8847; belong in HTML.

Semicolon

End named entities

Always finish with ; — write &sqsub;, not &sqsub.

A11y

Name the relation in context

Screen readers may announce the symbol unevenly. Prefer nearby words like “square image of” when the glyph carries meaning alone.

Browser Support

Square image of (U+228F) and its entity forms (&sqsub;, &#x228F;, &#8847;, CSS \\228F) are supported in all mainstream browsers. Visible glyphs depend on Mathematical Operators font coverage.

✓ Universal support

Square Image Of (&#x228F;)

Encode with named, hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+228F / entities Full support

Bottom line: Prefer &sqsub; in HTML. Use &#x228F; / &#8847; when numeric form is required, and \\228F only inside CSS content.

Key Takeaways

  • Unicode: square image of is U+228F (decimal 8847) — glyph ⊏.
  • HTML: prefer &sqsub; — also &#x228F; / &#8847; / type ⊏.
  • CSS: use \228F inside content for generated text.
  • Meaning: ⊏ is square image of — not ⊂ (&sub;), not ⊐.

One line: U+228F → &sqsub; / &#x228F; / &#8847; / CSS \228F.

Frequently Asked Questions

Use &sqsub; (named), &#x228F; (hex), &#8847; (decimal), type ⊏ directly in UTF-8, or the CSS escape \228F in content. Prefer &sqsub; in normal HTML.
U+228F (SQUARE IMAGE OF). Hex 228F, decimal 8847. It belongs to Mathematical Operators (U+2200–U+22FF).
Yes. Use &sqsub; (or the alias &SquareSubset;). Numeric forms &#8847; and &#x228F; also work.
No. ⊏ is U+228F (&sqsub;). ⊂ is U+2282 (&sub;). ⊐ is U+2290 (&sqsup;, square original of).
Use it for square-image-of / square-subset-style notation in set theory and academic math — not as a substitute for ordinary subset ⊂.
HTML entities (&sqsub;, &#8847;, or &#x228F;) go in markup. The CSS escape \228F goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Square image of is Unicode U+228F (decimal 8847) — glyph ⊏ in Mathematical Operators (U+2200–U+22FF). HTML5 names it &sqsub; (also &SquareSubset;). Official name: SQUARE IMAGE OF. Do not confuse with subset U+2282 (&sub;, ⊂) or square original of U+2290 (&sqsup;, ⊐).

Next: Square Image Of Not Equal To

Learn the HTML entity for square image of not equal to (U+22E4).

Continue tutorial →

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