HTML Entity for Double Integral (∬)

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

What You'll Learn

How to display the Double Integral (∬) in HTML using named, hexadecimal, decimal, and CSS entity methods. This character is U+222C (DOUBLE INTEGRAL) in the Mathematical Operators block (U+2200–U+22FF)—used in multivariable calculus for integrals over a region in the plane.

Render it with ∬, ∬, ∬, or CSS escape \222C. For a single integral use ∫ (∫); for triple integral use ∭ (∭).

⚡ Quick Reference — Double Integral

Unicode U+222C

Mathematical Operators block

Hex Code ∬

Hexadecimal reference

HTML Code ∬

Decimal reference

Named Entity ∬

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+222C
Hex code       ∬
HTML code      ∬
Named entity   ∬
CSS code       \222C
1

Complete HTML Example

This example demonstrates the Double Integral 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: "\222C";
  }
 </style>
</head>
<body>
<p>Double Integral using Hexadecimal: &#x222C;</p>
<p>Double Integral using HTML Code: &#8748;</p>
<p>Double Integral using Named Entity: &Int;</p>
<p id="point">Double Integral using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+222C 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 Integral (∬) in calculus and scientific notation:

Calculus D f(x,y) dA
Large glyph
vs other integrals ∫ &int; single   ∬ &Int; double   ∭ triple
Named entity &Int; → ∬
Monospace refs &Int; &#x222C; &#8748; \222C

🧠 How It Works

1

Named Entity

&Int; is the HTML named entity for the Double Integral (∬) — the most readable option in source code.

HTML markup
2

Hexadecimal Code

&#x222C; uses the Unicode hexadecimal value 222C to display the Double Integral symbol. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\222C 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+222C. Not single integral &int; (∫) or triple integral (∭).

Use Cases

The Double Integral symbol (∬) commonly appears in the following scenarios:

📐 Multivariable calculus

Double integrals over regions (e.g. ∬D f(x,y) dA), area and volume calculations.

🔬 Physics & engineering

Flux, surface integrals, and formulas using double integration.

📚 Math education

Online courses and tutorials with correct calculus notation in HTML.

📝 Scientific publishing

Articles and docs that need ∬ alongside MathML or equation renderers.

♿ 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 &Int; for readable HTML source
  • Use ∬ for double integrals over planar regions
  • Use fonts that cover Mathematical Operators (U+2200–U+22FF)
  • For complex equations, consider MathML, MathJax, or KaTeX
  • Pick one entity style per project for consistency

Don’t

  • Confuse ∬ (double) with ∫ (&int;, single) or ∭ (triple)
  • Use CSS escape \222C inside HTML markup
  • Rely on plain HTML entities alone for full limit/subscript notation
  • 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

&#x222C; &#8748; &Int;
2

For CSS stylesheets, use the escape in the content property

\222C
3

Unicode U+222C — double integral over a region

4

Prefer &Int; for readability in HTML source

5

Single ∫ (&int;) vs double ∬ (&Int;)

❓ Frequently Asked Questions

Use &Int; (named), &#x222C; (hex), &#8748; (decimal), or \222C in CSS content. All produce ∬.
U+222C (DOUBLE INTEGRAL). Mathematical Operators block (U+2200–U+22FF). Hex 222C, decimal 8748. Used for double integrals over a region in the plane.
In multivariable calculus, physics, engineering, math education, scientific publishing, and any web content that needs the ∬ symbol for integrals over two-dimensional regions.
Single integral (∫, &int;, U+222B) integrates over one variable. Double integral (∬, &Int;, U+222C) integrates over a region in the plane. Triple integral is U+222D (∭).
&Int; (capital I, then nt) is the named HTML entity for U+222C. 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