HTML Entity for Contour Integral (∮)

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

What You'll Learn

How to display the Contour Integral (∮) in HTML using numeric references, the named entity, and CSS escapes. This character is U+222E (CONTOUR INTEGRAL) in the Mathematical Operators block (U+2200–U+22FF). It denotes a line integral along a closed curve, widely used in calculus, complex analysis, and physics.

You can use the named entity ∮, hex ∮, decimal ∮, or CSS \222E. ∮ is the most readable option when writing HTML by hand. Do not confuse ∮ with Integral U+222B (∫) or Clockwise Integral U+2231 (∱, ∱).

⚡ Quick Reference — Contour Integral

Unicode U+222E

Mathematical Operators (U+2200–U+22FF)

Hex Code ∮

Hexadecimal reference

HTML Code ∮

Decimal reference

Named Entity ∮

Standard HTML entity

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

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\222E";
  }
 </style>
</head>
<body>
<p>Contour Integral using Hexa Decimal: &#x222E;</p>
<p>Contour Integral using HTML Code: &#8750;</p>
<p>Contour Integral using HTML Entity: &conint;</p>
<p id="point">Contour Integral using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+222E is supported in modern browsers; math fonts improve glyph quality:

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

👀 Live Preview

See the Contour Integral in mathematical contexts:

Calculus ∮ f(z) dz   &conint; f(z) dz
Named entity Contour integral: &conint;
Large glyph
vs related integrals Contour: ∮ (U+222E)   Clockwise: ∱ (U+2231)   Standard: ∫ (U+222B)
Monospace refs &#x222E; &#8750; &conint; \222E

🧠 How It Works

1

Hexadecimal Code

&#x222E; references code point U+222E using hex digits 222E.

HTML markup
2

Decimal HTML Code

&#8750; is the decimal equivalent (8750) for the same character.

HTML markup
3

Named HTML Entity

&conint; is the standard named entity for U+222E—“con” for contour plus “int” for integral.

HTML markup
4

CSS Entity

\222E is the CSS escape for U+222E, used in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

All four methods produce the Contour Integral glyph: . Unicode U+222E sits in Mathematical Operators (U+2200–U+22FF).

Use Cases

The Contour Integral (∮) commonly appears in:

∫ Calculus

Contour integrals, line integrals, and advanced calculus notation in equations.

⚛ Physics

Integrals in physics formulae, electromagnetism, and engineering documentation.

📚 Academic papers

Published papers, textbooks, and educational content with integral notation.

📄 Scientific docs

Technical documentation and research articles with mathematical expressions.

💻 Math editors

Equation editors, math input fields, and formula displays on the web.

🔤 Symbol references

Unicode tables and Mathematical Operators glossaries.

♿ Accessibility

Pair with MathML or alt text (e.g. “contour integral”) for screen readers.

💡 Best Practices

Do

  • Prefer &conint; for readable HTML when writing equations by hand
  • Use math-oriented fonts (Cambria Math, STIX, Noto Sans Math) for clearer glyphs
  • Keep entity style consistent within a document
  • Use \222E only inside CSS content, not in HTML text nodes
  • Consider MathML or KaTeX/MathJax for complex multi-line equations

Don’t

  • Confuse U+222E (∮) with U+2231 clockwise integral (∱) or U+222B standard integral (&int;)
  • Use U+0222E notation—the correct code point is U+222E
  • Assume every integral symbol is interchangeable—each has distinct Unicode semantics
  • Rely on default fonts alone for publication-quality math rendering
  • Mix entity styles randomly in one file

Key Takeaways

1

Named entity is the easiest option

&conint;
2

Numeric references also render ∮

&#x222E; &#8750;
3

For CSS stylesheets, use the escape in the content property

\222E
4

U+222E CONTOUR INTEGRAL

5

Four methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &conint; (named entity), &#x222E; (hex), &#8750; (decimal), or \222E in CSS content. All produce ∮.
U+222E (CONTOUR INTEGRAL). Mathematical Operators (U+2200–U+22FF). Hex 222E, decimal 8750.
In mathematical and scientific content: equations, calculus notation, physics formulae, academic papers, educational content, and any document displaying contour or line integrals.
HTML entities (&conint;, &#8750;, or &#x222E;) go directly in markup. The CSS escape \222E is used in stylesheets, typically in the content property of pseudo-elements.
Yes. &conint; is the named entity for U+222E. Clockwise Integral is a different character: U+2231 (∱, &cwint;).

Explore More HTML Entities!

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