HTML Entity for Square Cap (⊓)

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

What Is Square Cap?

Square cap (⊓) is the Unicode character at U+2293 in Mathematical Operators. Official name: SQUARE CAP. It is often used as a lattice meet or square-style “cap” operator in math notation.

Remember
Character     ⊓
Unicode       U+2293
Named entity  ⊓
Hex entity    ⊓
Decimal       ⊓
CSS escape    \2293
Not the same  ∩ · ⊔ · ̻

Prefer ⊓ in HTML markup. You can also type ⊓ in UTF-8, or use numeric forms when needed. For ordinary set intersection, use ∩ (∩) instead.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entity⊓HTML markup (preferred)
Direct character⊓HTML text (UTF-8)
Hex entity⊓HTML markup
Decimal entity⊓HTML markup
CSS escape\2293Stylesheet content
Intersection (related)∩ (U+2229)Named ∩

When to Use Which

SituationUse
Square cap / lattice meet⊓ or type ⊓
Ordinary set intersection∩ (∩)
Square cup / lattice join⊔ (⊔)
Square under a letter (diacritic)U+033B
Generated text via ::before / ::aftercontent: "\2293"

Live Preview

Square cap rendered alone and in short math notation.

Large glyph ⊓
Notation A ⊓ B
Compared ⊓ (sqcap)  |  ∩ (cap)  |  ⊔ (sqcup)
Hint Compare: Cap ⊓ vs Cup ⊔
With entities Named: ⊓ | Hex: ⊓ | Decimal: ⊓

Complete HTML Example

One page that shows the square cap 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 Cap (⊓) in HTML</title>
  <style>
    #point::after {
      content: "\2293";
    }
  </style>
</head>
<body>
  <p>Using Named Entity: &sqcap;</p>
  <p>Using Hex Code: &#x2293;</p>
  <p>Using HTML Code: &#8851;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: ⊓</p>
  <p>Notation: A &sqcap; B</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &sqcap; is the HTML5 name for U+2293 → ⊓. Best default in markup.

2. Hex: U+2293 → &#x2293; in HTML. Same glyph as the named form.

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

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

5. Typed / notation: paste ⊓ in UTF-8, or write A &sqcap; B for a short meet expression.

Pitfalls & Tips

Common mistakes when working with &sqcap;.

vs ∩

Not ordinary intersection

U+2229 (∩, &cap;) is the common set intersection. U+2293 is the square-style cap / meet.

vs ⊔

Not square cup

⊔ (U+2294, &sqcup;) is the dual join operator. Do not swap it with &sqcap;.

vs U+033B

Not combining square below

U+033B attaches a square under a letter. &sqcap; is a standalone math operator.

Name

Remember &sqcap;

The named entity is &sqcap; — not &cap; (that is U+2229).

CSS vs HTML

Do not mix escapes

\2293 belongs in CSS strings. &sqcap; / &#x2293; / &#8851; belong in HTML.

Semicolon

End named entities

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

Browser Support

Square cap (U+2293) and its entity forms (&sqcap;, &#x2293;, &#8851;, CSS \\2293) are supported in all mainstream browsers. Visible glyphs depend on Mathematical Operators font coverage.

✓ Universal support

Square Cap (&#x2293;)

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+2293 / entities Full support

Bottom line: Prefer &sqcap; in HTML. Use &#x2293; / &#8851; when numeric form is required, and \\2293 only inside CSS content.

Key Takeaways

  • Unicode: square cap is U+2293 (decimal 8851) — glyph ⊓.
  • HTML: prefer &sqcap; — also &#x2293; / &#8851; / type ⊓.
  • CSS: use \2293 inside content for generated text.
  • Meaning: ⊓ is square cap — not ∩ (&cap;), not ⊔.

One line: U+2293 → &sqcap; / &#x2293; / &#8851; / CSS \2293.

Frequently Asked Questions

Use &sqcap; (named), &#x2293; (hex), &#8851; (decimal), type ⊓ directly in UTF-8, or the CSS escape \2293 in content. Prefer &sqcap; in normal HTML.
U+2293 (SQUARE CAP). Hex 2293, decimal 8851. It belongs to Mathematical Operators (U+2200–U+22FF).
Yes. Use &sqcap;. Numeric forms &#8851; and &#x2293; also work.
No. ⊓ is U+2293 (&sqcap;). ∩ is U+2229 (&cap;). ⊔ is U+2294 (&sqcup;, square cup).
Use it for square-cap / lattice-meet notation in set theory, order theory, and academic math — not as a substitute for ordinary intersection ∩.
HTML entities (&sqcap;, &#8851;, or &#x2293;) go in markup. The CSS escape \2293 goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Square cap is Unicode U+2293 (decimal 8851) — glyph ⊓ in Mathematical Operators (U+2200–U+22FF). HTML5 names it &sqcap;. Official name: SQUARE CAP. Often used as a lattice meet (⊓). Do not confuse with intersection U+2229 (&cap;, ∩), square cup U+2294 (&sqcup;, ⊔), or combining square below U+033B.

Next: Square Cup

Learn the HTML entity for square cup (U+2294).

Square cup 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