HTML Entity for Square Original Of (⊐)

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

What You'll Learn

How to display Square Original Of (⊐) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+2290 (SQUARE ORIGINAL OF) in the Mathematical Operators block (U+2200–U+22FF)—a set-theoretic relation indicating a square original (superset-like) relationship.

Render it with ⊐, ⊐, ⊐, or CSS \2290. Paired with Square Image Of U+228F (⊏, ⊏) and distinct from ordinary superset U+2283 (⊃, ⊃).

⚡ Quick Reference — Square Original Of

Unicode U+2290

Mathematical Operators

Hex Code ⊐

Hexadecimal reference

HTML Code ⊐

Decimal reference

Named Entity ⊐

Most readable option

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

🌐 Browser Support

Square Original 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 original of symbol in mathematical contexts:

Single symbol
Set notation A ⊐ B (square original of)
Image and original Image ⊏  |  Original ⊐
Named entity &sqsup; renders as ⊐
Numeric refs &sqsup; &#x2290; &#8848; \2290

🧠 How It Works

1

Named HTML Entity

&sqsup; is the semantic named entity for the square original of relation—the most readable option in source HTML.

HTML markup
2

Hexadecimal Code

&#x2290; uses Unicode hexadecimal 2290 to display ⊐ in HTML markup.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

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

Use Cases

Square Original Of (⊐) commonly appears in:

📊 Set theory

Square original and superset-like relationships between sets.

📐 Mathematical notation

Equations and formulas using the square original 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 relation symbols.

💡 Best Practices

Do

  • Use &sqsup; for readable source markup
  • Distinguish ⊐ (original) from ⊏ (image, &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+02290—the correct value is U+2290
  • Use CSS \02290 with a leading zero—prefer \2290
  • Confuse &sqsup; with &sqsub; or &sqsupe;
  • Assume ⊐ and superset ⊃ (&sup;) are interchangeable in formal notation
  • Put CSS escape \2290 in HTML text nodes

Key Takeaways

1

Four HTML/CSS references all render ⊐

&sqsup; &#x2290; &#8848;
2

For CSS stylesheets, use \2290 in the content property

3

Unicode U+2290 — SQUARE ORIGINAL OF (⊐)

4

&sqsup; is original; &sqsub; is image (U+228F)

❓ Frequently Asked Questions

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