HTML Entity for Clockwise Integral (∱)

What You'll Learn
How to display the Clockwise Integral (∱) in HTML using numeric references, the named entity, and CSS escapes. This character is U+2231 (CLOCKWISE INTEGRAL) in the Mathematical Operators block (U+2200–U+22FF). It denotes a clockwise-oriented integral used in calculus and physics notation.
You can use the named entity ∱, hex ∱, decimal ∱, or CSS \2231. Do not confuse ∱ with Clockwise Contour Integral U+2232 (∲), Integral U+222B (∫), or Contour Integral U+222E (∮).
⚡ Quick Reference — Clockwise Integral
U+2231Mathematical Operators (U+2200–U+22FF)
∱Hexadecimal reference
∱Decimal reference
∱Standard HTML entity
Name Value
──────────── ──────────
Unicode U+2231
Hex code ∱
HTML code ∱
Named entity ∱
CSS code \2231Complete HTML Example
This example demonstrates the Clockwise Integral (∱) using hexadecimal code, decimal HTML code, the named entity ∱, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2231";
}
</style>
</head>
<body>
<p>Clockwise Integral using Hexa Decimal: ∱</p>
<p>Clockwise Integral using HTML Code: ∱</p>
<p>Clockwise Integral using HTML Entity: ∱</p>
<p id="point">Clockwise Integral using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+2231 is supported in modern browsers; math fonts improve glyph quality:
👀 Live Preview
See the Clockwise Integral in mathematical contexts:
🧠 How It Works
Hexadecimal Code
∱ references code point U+2231 using hex digits 2231.
Decimal HTML Code
∱ is the decimal equivalent (8753) for the same character.
Named HTML Entity
∱ is the standard named entity for U+2231—“cw” for clockwise plus “int” for integral.
CSS Entity
\2231 is the CSS escape for U+2231, used in the content property of ::before or ::after.
Same visual result
All four methods produce the Clockwise Integral glyph: ∱. Unicode U+2231 sits in Mathematical Operators (U+2200–U+22FF).
Use Cases
The Clockwise Integral (∱) commonly appears in:
Contour integrals, line integrals, and advanced calculus notation in equations.
Integrals in physics formulae, electromagnetism, and engineering documentation.
Published papers, textbooks, and educational content with integral notation.
Technical documentation and research articles with mathematical expressions.
Equation editors, math input fields, and formula displays on the web.
Unicode tables and Mathematical Operators glossaries.
Pair with MathML or alt text (e.g. “clockwise integral”) for screen readers.
💡 Best Practices
Do
- Prefer
∱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
\2231only inside CSScontent, not in HTML text nodes - Consider MathML or KaTeX/MathJax for complex multi-line equations
Don’t
- Confuse U+2231 (∱) with U+2232 contour integral (∲) or U+222B standard integral (∫)
- Use U+02231 notation—the correct code point is U+2231
- 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
Named entity is the easiest option
∱Numeric references also render ∱
∱ ∱For CSS stylesheets, use the escape in the content property
\2231U+2231 CLOCKWISE INTEGRAL
Four methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
∱ (named entity), ∱ (hex), ∱ (decimal), or \2231 in CSS content. All produce ∱.U+2231 (CLOCKWISE INTEGRAL). Mathematical Operators (U+2200–U+22FF). Hex 2231, decimal 8753.∱, ∱, or ∱) go directly in markup. The CSS escape \2231 is used in stylesheets, typically in the content property of pseudo-elements.∱ is the named entity for U+2231. Clockwise Contour Integral is a different character: U+2232 (∲).Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, symbols, arrows, and more.
8 people found this page helpful
