HTML Entity for Integral (∫)

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

What You'll Learn

How to display the Integral symbol (∫) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. Use it for integration in calculus—antiderivatives, definite integrals, and area under a curve.

This character is U+222B (INTEGRAL) in the Mathematical Operators block (U+2200–U+22FF). Render it with ∫, ∫, ∫, or CSS \222B.

⚡ Quick Reference — Integral

Unicode U+222B

Mathematical Operators

Hex Code ∫

Hexadecimal reference

HTML Code ∫

Decimal reference

Named Entity ∫

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+222B
Hex code       ∫
HTML code      ∫
Named entity   ∫
CSS code       \222B
Meaning        Integration / integral sign
CSS note       \222B or \0222B in content property
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\222B";
  }
 </style>
</head>
<body>
<p>Integral using Hexadecimal: &#x222B;</p>
<p>Integral using Decimal: &#8747;</p>
<p>Integral using Named Entity: &int;</p>
<p id="point">Integral using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Integral symbol (∫) is universally supported in all modern browsers:

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

👀 Live Preview

See the Integral symbol (∫) rendered in typical calculus contexts:

Indefinite f(x) dx = F(x) + C
Definite 01 x2 dx = 13
Large glyph
Named entity &int; → ∫
Numeric refs &#x222B; &#8747; \222B

🧠 How It Works

1

Hexadecimal Code

&#x222B; uses the Unicode hexadecimal value 222B to display the Integral symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
4

Named Entity

&int; is the standard named HTML entity for the integral sign—easy to read and remember in source markup.

HTML markup
=

Same visual result

All four methods produce . Unicode U+222B is in Mathematical Operators. Next: Intercalate.

Use Cases

The Integral symbol (∫) is commonly used in:

∫ Calculus

Definite and indefinite integrals, antiderivatives, and area-under-curve notation.

📐 Physics

Work, flux, probability densities, and continuous-system equations.

📚 Textbooks

Calculus, analysis, and applied math with correct integral notation.

🎓 E-Learning

Courses, problem sets, and interactive calculus tutorials.

📄 Documentation

Formulas, derivations, and technical specs that use integration.

🔬 Research

Papers in mathematics, physics, statistics, and engineering.

💡 Best Practices

Do

  • Use &int; for readable source markup
  • Pick one style (hex / decimal / named) per project
  • Use MathML or ARIA for complex integrals with limits
  • Test the glyph across browsers and math-friendly fonts
  • Provide context (integrand, limits) alongside the symbol

Don’t

  • Mix entity styles randomly in one file
  • Use CSS \222B inside HTML text nodes
  • Confuse ∫ (integral) with ∬ (double integral) or ∑ (sum)
  • Rely on plain HTML alone for heavy subscript/superscript layout
  • Assume every font renders limits and integrals with perfect spacing

Key Takeaways

1

Three HTML references all render ∫

&#x222B; &#8747; &int;
2

For CSS stylesheets, use \222B in the content property

3

Unicode U+222B — INTEGRAL (Mathematical Operators)

4

Prefer &int; for readability in HTML source

5

Previous: Information Source   Next: Intercalate

❓ Frequently Asked Questions

Use &#x222B; (hex), &#8747; (decimal), &int; (named), or \222B in CSS content. All produce ∫.
U+222B (INTEGRAL). Mathematical Operators block (U+2200–U+22FF). Hex 222B, decimal 8747. Used for definite and indefinite integrals in calculus.
In calculus and mathematics, physics and engineering, textbooks and academic papers, scientific documentation, e-learning, and any content that requires integration notation.
HTML entities (&int;, &#8747;, or &#x222B;) go in markup. The CSS escape \222B is used in stylesheets, typically on ::before or ::after. Both render ∫.
Yes. &int; is the named HTML entity for ∫ (integral). It is part of the HTML5 entity set and is well supported in modern browsers.

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