HTML Entity for Clockwise Contour Integral (∲)

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

What You'll Learn

How to display the Clockwise Contour Integral (∲) in HTML and CSS. This character is U+2232 (CLOCKWISE CONTOUR INTEGRAL) in the Mathematical Operators block (U+2200–U+22FF). It denotes integration around a closed contour in the clockwise direction—common in complex analysis and physics.

There is no named HTML entity for U+2232. Use ∲ or ∲ in markup, or \2232 in stylesheet content. Do not confuse ∲ with Contour Integral U+222E (∮, ∮) or Anticlockwise Contour Integral U+2233 (∳).

⚡ Quick Reference — Clockwise Contour Integral

Unicode U+2232

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

Hex Code ∲

Hexadecimal reference

HTML Code ∲

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2232
Hex code       ∲
HTML code      ∲
Named entity   —
CSS code       \2232
1

Complete HTML Example

This example shows U+2232 using hexadecimal and decimal references plus a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2232";
  }
 </style>
</head>
<body>
<p class="math">Clockwise Contour Integral using Hexa Decimal: &#x2232;</p>
<p class="math">Clockwise Contour Integral using HTML Code: &#8754;</p>
<p class="math" id="point">Clockwise Contour Integral using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2232 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 Clockwise Contour Integral in mathematical contexts:

Contour integral ∲_C f(z) dz
Large glyph
vs related integrals Clockwise: ∲ (U+2232)   Anticlockwise: ∳ (U+2233)   Contour: ∮ (U+222E)
Monospace refs &#x2232; &#8754; \2232

🧠 How It Works

1

Hexadecimal Code

&#x2232; references code point U+2232 using hex digits 2232.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce the Clockwise Contour Integral glyph: . Unicode U+2232 sits in Mathematical Operators (U+2200–U+22FF). No named HTML entity exists.

Use Cases

The Clockwise Contour Integral (∲) commonly appears in:

∫ Calculus

Contour and line integrals in advanced calculus notation.

⚛ Complex analysis

Integration around closed paths in the complex plane.

⚙ Physics

Electromagnetism, field theory, and engineering formulae.

📖 Academic papers

Published research, textbooks, and lecture notes.

💻 Web math

Equation editors and formula displays alongside MathML or KaTeX.

🔤 Symbol references

Unicode tables and mathematical operator glossaries.

♿ Accessibility

Use MathML or aria-label="clockwise contour integral" for screen readers.

💡 Best Practices

Do

  • Use math fonts (Cambria Math, STIX Two Math, serif) for clear integral glyphs
  • Prefer &#x2232; or &#8754; consistently in HTML
  • Consider MathML or KaTeX for complex multi-line equations
  • Distinguish clockwise (U+2232) from anticlockwise (U+2233) notation
  • Use \2232 only inside CSS content, not in HTML text nodes

Don’t

  • Confuse U+2232 (∲) with U+2233 anticlockwise (∳) or U+222E contour (∮)
  • Use U+02232 notation—the correct code point is U+2232
  • Assume every font renders Mathematical Operators identically
  • Expect a named HTML entity for U+2232—none exists
  • Mix hex and decimal styles randomly in one file

Key Takeaways

1

No named entity—use numeric references

&#x2232; &#8754;
2

For CSS stylesheets, use the escape in the content property

\2232
3

U+2232 CLOCKWISE CONTOUR INTEGRAL

4

Mathematical Operators block U+2200–U+22FF

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x2232; (hex), &#8754; (decimal), or \2232 in CSS content. There is no named HTML entity for U+2232.
U+2232 (CLOCKWISE CONTOUR INTEGRAL). Mathematical Operators (U+2200–U+22FF). Hex 2232, decimal 8754.
For calculus notation, complex analysis, physics formulae, academic papers, educational content, and any document displaying clockwise contour integrals.
Numeric references (&#8754; or &#x2232;) go directly in HTML markup. The CSS escape \2232 is used in stylesheets, typically in the content property of pseudo-elements.
No for U+2232. Contour Integral U+222E (∮) has &oint;. Anticlockwise Contour Integral is U+2233 (∳)—a different character.

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