HTML Entity for Triple Integral (∭)

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

What Is the Triple Integral Entity?

Triple Integral (∭) is the Mathematical Operators character at Unicode U+222D (TRIPLE INTEGRAL). HTML5 names it ∭. Use it for volume integrals in multivariable calculus.

Remember
Character     ∭
Unicode       U+222D
Named entity  ∭
Hex entity    ∭
Decimal       ∭
CSS escape    \222D
Not the same  ∫ (∫) · ∬ (∬)

Named, hex, decimal, CSS, and a typed character all produce the same glyph: ∭. Prefer ∭ in HTML markup. For a single integral see ∫; for a double integral see ∬.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entity∭HTML markup (best default)
Hex entity∭HTML markup
Decimal entity∭HTML markup
CSS escape\222DStylesheet content
Direct character∭UTF-8 HTML text

When to Use Which

SituationUse
Triple / volume integral∭ (preferred)
Numeric-only markup∭ or ∭
Generated text via ::before / ::aftercontent: "\222D"
Single integralUse ∫ (U+222B)
Double integralUse ∬ (U+222C)

Live Preview

Triple Integral in calculus notation, compared with single and double integrals.

Volume integral ∭V f(x,y,z) dV
Large glyph ∭
Named entity ∭ → ∭
vs single / double ∫  |  ∬  |  ∭
With entities Named: ∭ | Hex: ∭ | Decimal: ∭

Complete HTML Example

One page that shows Triple Integral 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 display ∭ in HTML and CSS.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Triple Integral (∭)</title>
  <style>
    #point::after {
      content: "\222D";
    }
  </style>
</head>
<body>
  <p>Built with Named: &iiint;</p>
  <p>Built with Hex: &#x222D;</p>
  <p>Built with Decimal: &#8749;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ∭</p>
  <p>&iiint;<sub>V</sub> f(x,y,z) dV</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &iiint; is the preferred HTML5 name for U+222D → ∭.

2. Hex: &#x222D; inserts the same code point. Same visual as named.

3. Decimal: same code point as 8749 → &#8749;.

4. CSS: use \222D in content (not an HTML entity). #point::after appends ∭.

5. Typed: paste ∭ in a UTF-8 document, or write notation like &iiint;<sub>V</sub> f(x,y,z) dV.

Pitfalls & Tips

Common mistakes when working with Triple Integral.

Named

Prefer &iiint;

&iiint; is the clear HTML5 named form. It is case-sensitive — write &iiint;, not &IIINT;.

Look-alikes

∭ ≠ ∫ ≠ ∬

U+222D is triple. Single is &int;; double is &Int; — count the integral signs before you publish.

A11y

Add context

A lone ∭ may be unclear. Pair it with notation such as “volume integral” or an accessible name for screen readers.

Fonts

Glyph coverage

Mathematical Operators coverage varies. Test calculus pages on mobile and provide a MathML or image fallback if ∭ is missing.

CSS vs HTML

Do not mix escapes

\222D belongs in CSS. &iiint; / &#x222D; / &#8749; belong in HTML.

Semicolon

End references

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

Browser Support

Triple Integral (U+222D) and its entity forms (&iiint;, &#x222D;, &#8749;, CSS \\222D) are supported in all modern browsers. Glyph coverage depends on the font.

✓ Universal encoding

Triple Integral (&#x222D;)

Encode with named, hex, decimal, or CSS escape — or type ∭ directly in UTF-8 HTML. Prefer &iiint;.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer IE 9+
Yes*
U+222D Full support

Bottom line: Prefer &iiint; for readable HTML. Use \\222D only inside CSS content. Do not confuse with &int; or &Int;.

Key Takeaways

  • Unicode: this symbol is U+222D (decimal 8749) — triple integral.
  • HTML: prefer &iiint; — or use &#x222D; / &#8749;.
  • CSS: use \222D inside content for generated math markers.
  • Watch out: not the same as &int; (single) or &Int; (double).

One line: U+222D → &iiint; / &#x222D; / &#8749; / CSS \222D.

Frequently Asked Questions

Use &iiint; (named), &#x222D; (hex), &#8749; (decimal), or the CSS escape \222D in the content property. All render ∭. Prefer &iiint; for readable markup.
U+222D (TRIPLE INTEGRAL). Hex 222D, decimal 8749, named entity &iiint;. It belongs to Mathematical Operators (U+2200–U+22FF).
Yes. HTML5 defines &iiint; for U+222D. It is case-sensitive — write &iiint;, not &IIINT;.
U+222D is TRIPLE INTEGRAL (&iiint;). U+222B is INTEGRAL (&int;). U+222C is DOUBLE INTEGRAL (&Int;). Same family, different counts of integral signs.
Use it for multivariable calculus, physics, and engineering content that needs a volume integral over three-dimensional space. Prefer &iiint; in source for clarity.
HTML entities (&iiint;, &#8749;, or &#x222D;) go in markup. The CSS escape \222D is used in stylesheets (usually in the content property of ::before/::after). Both render ∭.

Did you know?

Triple Integral is Unicode U+222D (decimal 8749) — glyph ∭ (TRIPLE INTEGRAL) in Mathematical Operators. HTML5 names it &iiint; (case-sensitive). Prefer it for volume integrals in multivariable calculus. Do not confuse it with single integral (&int;, U+222B) or double integral (&Int;, U+222C).

Next: Triple Prime

Learn the HTML entity for Triple Prime — next in this sequence.

Continue 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