HTML Entity for Square Cap (⊓)

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

What You'll Learn

How to display the Square Cap (⊓) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+2293 (SQUARE CAP) in the Mathematical Operators block (U+2200–U+22FF)—a set-theoretic and lattice operator (meet).

Render it with ⊓, ⊓, ⊓, or CSS \2293. Distinct from the combining mark Combining Square Below (U+033B) and paired with square cup U+2294 (⊔, ⊔).

⚡ Quick Reference — Square Cap

Unicode U+2293

Mathematical Operators

Hex Code ⊓

Hexadecimal reference

HTML Code ⊓

Decimal reference

Named Entity ⊓

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2293
Hex code       ⊓
HTML code      ⊓
Named entity   ⊓
CSS code       \2293
Meaning        Square cap (meet)
Paired with    U+2294 = square cup (⊔, ⊔)
Not the same   U+033B = combining square below
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: "\2293";
  }
 </style>
</head>
<body>
<p>Square cap (named): &sqcap;</p>
<p>Square cap (hex): &#x2293;</p>
<p>Square cap (decimal): &#8851;</p>
<p id="point">Square cap (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Square Cap (⊓) 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 cap symbol in mathematical contexts:

Single symbol
Set notation A ⊓ B (meet / intersection-like)
Cap and cup Cap ⊓  |  Cup ⊔
Named entity &sqcap; renders as ⊓
Numeric refs &sqcap; &#x2293; &#8851; \2293

🧠 How It Works

1

Named HTML Entity

&sqcap; is the semantic named entity for the square cap operator—the most readable option in source HTML.

HTML markup
2

Hexadecimal Code

&#x2293; uses Unicode hexadecimal 2293 to display ⊓ in HTML markup.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

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

Use Cases

The Square Cap (⊓) commonly appears in:

📊 Set theory

Meet operations and intersection-like notation in lattices.

📐 Mathematical notation

Equations and formulas using the square cap operator.

📚 Academic papers

Research on order theory, logic, and abstract algebra.

🏫 Educational content

Tutorials on lattice meet 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 &sqcap; for readable source markup
  • Distinguish ⊓ (cap) from ⊔ (cup, &sqcup;)
  • 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 U+2293 (⊓, math operator) with U+033B (combining mark)
  • Use padded Unicode notation like U+02293—the correct value is U+2293
  • Put CSS escape \2293 in HTML text nodes
  • Confuse &sqcap; with &sqcup;
  • Mix entity styles randomly in one file

Key Takeaways

1

Four HTML/CSS references all render ⊓

&sqcap; &#x2293; &#8851;
2

For CSS stylesheets, use \2293 in the content property

3

Unicode U+2293 — SQUARE CAP (⊓)

4

&sqcap; is cap; &sqcup; is cup (U+2294)

❓ Frequently Asked Questions

Use &sqcap; (named), &#x2293; (hex), &#8851; (decimal), or \2293 in CSS content. All four render ⊓.
U+2293 (SQUARE CAP). Mathematical Operators (U+2200–U+22FF). Hex 2293, decimal 8851, named &sqcap;.
&sqcap; renders ⊓ (U+2293, square cap / meet). &sqcup; renders ⊔ (U+2294, square cup / join). They are paired operators in lattice and set notation.
For mathematical notation, set theory, lattice meet operations, technical documentation, academic papers, and educational content that need the square cap operator.
HTML references (&sqcap;, &#8851;, or &#x2293;) go in markup. The CSS escape \2293 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