HTML Entity for Volume Integral (∰)

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

What You'll Learn

How to display the Volume Integral symbol (∰) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+2230 (VOLUME INTEGRAL) in the Mathematical Operators block—a triple integral operator used in calculus, physics, and engineering notation.

Render it with ∰, ∰, the named entity ∰, or CSS escape \2230. Do not confuse ∰ with contour integral ∮ (∮) or surface integral ∯ (∯).

⚡ Quick Reference — Volume Integral Entity

Unicode U+2230

Mathematical Operators

Hex Code ∰

Hexadecimal reference

HTML Code ∰

Decimal reference

Named Entity ∰

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2230
Hex code       ∰
HTML code      ∰
Named entity   ∰
CSS code       \2230
Meaning        Volume (triple) integral
Related        U+222E = ∮ (contour integral, ∮)
               U+222F = ∯ (surface integral, ∯)
Block          Mathematical Operators (U+2200–U+22FF)
1

Complete HTML Example

A simple example showing the Volume Integral symbol (∰) using hexadecimal code, decimal HTML code, named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2230";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x2230;</p>
<p>Symbol (decimal): &#8752;</p>
<p>Symbol (named): &Cconint;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The Volume Integral symbol (∰) is supported in modern browsers when the font includes Mathematical Operators glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Volume Integral symbol rendered live in mathematical contexts:

In an equationV f dV — integral over a volume
Large glyph
Integral family∮   ∯   ∰
Not the same as∯ (U+222F, surface integral, &Conint;)
Numeric refs&#x2230; &#8752; &Cconint; \2230

🧠 How It Works

1

Hexadecimal Code

&#x2230; uses the Unicode hexadecimal value 2230 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8752; uses the decimal Unicode value 8752 to display the same character. A common method for Mathematical Operators.

HTML markup
3

Named Entity

&Cconint; is the semantic named entity—the easiest to read in source HTML for the volume integral operator.

HTML markup
4

CSS Entity

\2230 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 the glyph: . Unicode U+2230 sits in Mathematical Operators. Not the same as &Conint; (∯) or &conint; (∮).

Use Cases

The Volume Integral symbol (∰) is commonly used in:

∫ Mathematics

Calculus equations and triple integral notation.

🔬 Physics

Theoretical physics and scientific documentation with volume integrals.

⚙ Engineering

Technical specifications and engineering calculations.

📚 Academic content

Research papers and educational materials on advanced mathematics.

📄 Technical documentation

Software and scientific guides involving mathematical notation.

📐 Formula pages

Equation documentation and problem-solving content.

🔬 Scientific content

Research articles requiring volume integral notation.

💡 Best Practices

Do

  • Use &Cconint; for readable source markup
  • Pair ∰ with subscripts and integrand for clear equations
  • Pick one entity style per project for consistency
  • Use fonts that support Mathematical Operators
  • Distinguish ∰ from ∯ (&Conint;) and ∮ (&conint;)

Don’t

  • Confuse ∰ (U+2230) with ∯ (U+222F, surface integral)
  • Substitute ∮ (&conint;) when ∰ is specifically required
  • Mix entity styles randomly in one file
  • Use CSS escape \2230 inside HTML markup
  • Forget accessibility labels for standalone math symbols

Key Takeaways

1

Type ∰ directly, or use hex/decimal/named references

&#x2230; &#8752; &Cconint;
2

For CSS stylesheets, use the escape in the content property

\2230
3

Unicode U+2230 — VOLUME INTEGRAL

4

Not the same as ∯ (&Conint;) or ∮ (&conint;)

5

Previous: Victory Hand (✌)   Next: Warning Sign

❓ Frequently Asked Questions

Use &#x2230; (hex), &#8752; (decimal), &Cconint; (named), or \2230 in CSS content. All produce ∰. In UTF-8 you can also type ∰ directly.
U+2230 (VOLUME INTEGRAL). Mathematical Operators block. Hex 2230, decimal 8752. Named entity &Cconint;. Related: U+222F (∯, &Conint;) is surface integral.
In mathematical equations, calculus, physics, engineering content, academic papers, and any documentation requiring triple integral notation.
HTML entities (&#8752;, &#x2230;, or &Cconint;) go directly in markup. The CSS escape \2230 is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.
Yes. &Cconint; is the named HTML entity for ∰ (U+2230). &#8752; and &#x2230; are equivalent in modern browsers. Do not confuse &Cconint; with &Conint; (∯, surface integral).

Explore More HTML Entities!

Discover 1500+ HTML character references — 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