HTML Entity for Triple Integral (∭)

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

What You'll Learn

How to display the Triple Integral (∭) in HTML using named, hexadecimal, decimal, and CSS entity methods. This character is U+222D (TRIPLE INTEGRAL) in the Mathematical Operators block (U+2200–U+22FF)—used in multivariable calculus for integrals over a volume in three-dimensional space.

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

⚡ Quick Reference — Triple Integral

Unicode U+222D

Mathematical Operators block

Hex Code ∭

Hexadecimal reference

HTML Code ∭

Decimal reference

Named Entity ∭

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+222D
Hex code       ∭
HTML code      ∭
Named entity   ∭
CSS code       \222D
Block          Mathematical Operators (U+2200–U+22FF)
Official name  TRIPLE INTEGRAL
Related        U+222B = single (∫), U+222C = double (∬)
1

Complete HTML Example

This example demonstrates the Triple Integral (∭) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\222D";
  }
 </style>
</head>
<body>
<p>Using Named Entity: &iiint;</p>
<p>Using Hexadecimal: &#x222D;</p>
<p>Using HTML Code: &#8749;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

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

Calculus V f(x,y,z) dV
Large glyph
vs other integrals ∫ &int; single   ∬ &Int; double   ∭ &iiint; triple
Named entity &iiint; → ∭
Monospace refs &iiint; &#x222D; &#8749; \222D

🧠 How It Works

1

Named Entity

&iiint; is the HTML named entity for the Triple Integral (∭) — the most readable option in source code.

HTML markup
2

Hexadecimal Code

&#x222D; uses the Unicode hexadecimal value 222D to display the Triple Integral symbol.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\222D is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+222D. Not single integral &int; (∫) or double integral &Int; (∬). Previous: Trigram Wind. Next: Triple Prime.

Use Cases

The Triple Integral (∭) commonly appears in:

📐 Multivariable calculus

Triple integrals over volumes (e.g. ∭V f(x,y,z) dV).

🔬 Physics & engineering

Mass, charge density, and flux formulas in three dimensions.

📚 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 &iiint; for readable HTML source
  • Use ∭ for triple integrals over volumes in 3D
  • 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 ∭ (triple) with ∫ (&int;, single) or ∬ (&Int;, double)
  • Use CSS escape \222D 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

&#x222D; &#8749; &iiint;
2

For CSS stylesheets, use the escape in the content property

\222D
3

Unicode U+222D — triple integral over a volume

4

Prefer &iiint; for readability in HTML source

5

Single ∫   Double ∬   Triple ∭

❓ Frequently Asked Questions

Use &iiint; (named), &#x222D; (hex), &#8749; (decimal), or \222D in CSS content. All produce ∭.
U+222D (TRIPLE INTEGRAL). Mathematical Operators block (U+2200–U+22FF). Hex 222D, decimal 8749. Used for triple integrals over a volume in three-dimensional space.
In multivariable calculus, physics, engineering, math education, scientific publishing, and any web content that needs the ∭ symbol for integrals over three-dimensional regions.
The named entity &iiint; is the most readable option when writing HTML by hand. Numeric codes (&#8749; or &#x222D;) are equally valid. All render ∭.
Yes. &iiint; is part of the HTML standard and is widely supported across modern browsers. It is the preferred method for displaying ∭ in HTML documents.

Explore More HTML Entities!

Discover 1500+ HTML character references — math operators, symbols, punctuation, 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