HTML Entity for Double Intersection (⋒)

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

What You'll Learn

How to display the Double Intersection (⋒) in HTML using named, hexadecimal, decimal, and CSS entity methods. This character is U+22D2 (DOUBLE INTERSECTION) in the Mathematical Operators block (U+2200–U+22FF)—used in set theory as the double cap (double intersection of sets).

Render it with ⋒, ⋒, ⋒, or CSS escape \22D2. For single intersection use ∩ (∩); for double union use ⋓ (⋓).

⚡ Quick Reference — Double Intersection

Unicode U+22D2

Mathematical Operators block

Hex Code ⋒

Hexadecimal reference

HTML Code ⋒

Decimal reference

Named Entity ⋒

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22D2
Hex code       ⋒
HTML code      ⋒
Named entity   ⋒
CSS code       \22D2
1

Complete HTML Example

This example demonstrates the Double Intersection symbol (⋒) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\22D2";
  }
 </style>
</head>
<body>
<p>Double Intersection using Hexadecimal: &#x22D2;</p>
<p>Double Intersection using HTML Code: &#8914;</p>
<p>Double Intersection using Named Entity: &Cap;</p>
<p id="point">Double Intersection using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+22D2 is supported in modern browsers; use a font with Mathematical Operators coverage for consistent glyphs:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Double Intersection (⋒) in set theory and mathematical notation:

Set theory A ⋒ B
Large glyph
vs single cap ∩ &cap; single   ⋒ &Cap; double   ⋓ &Cup; double union
Named entity &Cap; → ⋒
Monospace refs &Cap; &#x22D2; &#8914; \22D2

🧠 How It Works

1

Named Entity

&Cap; is the HTML named entity for the Double Intersection (⋒) — the most readable option in source code.

HTML markup
2

Hexadecimal Code

&#x22D2; uses the Unicode hexadecimal value 22D2 to display the Double Intersection symbol. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

&#8914; uses the decimal Unicode value 8914 to display the same character.

HTML markup
4

CSS Entity

\22D2 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce: . Unicode U+22D2. Not single intersection &cap; (∩) or double union &Cup; (⋓).

Use Cases

The Double Intersection symbol (⋒) commonly appears in the following scenarios:

📐 Set theory

Double intersection of sets (double cap), lattice operations, and formal definitions with ⋒.

📚 Mathematics & logic

Order theory, lattice theory, and algebraic structures using cap-like operators.

🎓 Math education

Online courses and tutorials with correct set-theoretic notation in HTML.

📝 Technical documentation

Research papers and specs that use ⋒ in definitions or formulas.

♿ Accessibility

Pair with MathML or descriptions so assistive tech interprets formulas.

🔤 Symbol references

Unicode and HTML entity guides for Mathematical Operators.

💡 Best Practices

Do

  • Prefer &Cap; for readable HTML source
  • Use ⋒ for double intersection (double cap) in set notation
  • Use fonts that cover Mathematical Operators (U+2200–U+22FF)
  • For complex math, consider MathML, MathJax, or KaTeX
  • Pick one entity style per project for consistency

Don’t

  • Confuse ⋒ (&Cap;) with ∩ (&cap;, single)—case matters
  • Use CSS escape \22D2 inside HTML markup
  • Mix up double intersection (⋒) and double union (⋓, &Cup;)
  • Mix hex, decimal, and named styles randomly in one file
  • Forget UTF-8 (<meta charset="utf-8">) in your document

Key Takeaways

1

Four ways to render ⋒ in HTML

&#x22D2; &#8914; &Cap;
2

For CSS stylesheets, use the escape in the content property

\22D2
3

Unicode U+22D2 — double intersection (double cap)

4

Prefer &Cap; for readability in HTML source

5

Single ∩ (&cap;) vs double ⋒ (&Cap;)

❓ Frequently Asked Questions

Use &Cap; (named), &#x22D2; (hex), &#8914; (decimal), or \22D2 in CSS content. All produce ⋒.
U+22D2 (DOUBLE INTERSECTION). Mathematical Operators block (U+2200–U+22FF). Hex 22D2, decimal 8914. Used as the double cap in set theory and mathematics.
In set theory, lattice theory, order theory, math education, and any web content that needs the ⋒ symbol for double intersection of sets.
Single intersection (∩, &cap;, U+2229) is the standard cap. Double intersection (⋒, &Cap;, U+22D2) is the double cap. Named entities differ by case: &cap; vs &Cap;.
&Cap; (capital C, ap) is the named HTML entity for U+22D2. It renders as ⋒ and is the most readable option when writing HTML by hand.

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