HTML Entity for Anticlockwise Contour Integral (∳)

What You'll Learn
How to display the anticlockwise contour integral operator (∳, U+2233) in HTML. Unicode’s official name is ANTICLOCKWISE CONTOUR INTEGRAL; it is used in calculus and complex analysis for line integrals around closed curves with a conventional positive (anticlockwise) orientation.
The character lives in the Mathematical Operators block (near other integrals). There is no named HTML entity for U+2233, so you use ∳ or ∳ in markup, or \2233 in CSS content on pseudo-elements.
⚡ Quick Reference — Anticlockwise Contour Integral
U+2233Mathematical Operators block
∳Hexadecimal reference
∳Decimal reference
\2233Use in CSS content
Name Value
──────────── ──────────
Unicode U+2233
Hex code ∳
HTML code ∳
Named entity (none)
CSS code \2233Complete HTML Example
This example shows U+2233 using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2233";
}
</style>
</head>
<body>
<p>Anticlockwise Contour Integral using Hexa Decimal: ∳</p>
<p>Anticlockwise Contour Integral using HTML Code: ∳</p>
<p id="point">Anticlockwise Contour Integral using CSS Entity: </p>
</body>
</html>🌐 Browser Support
Numeric character references and CSS escapes for U+2233 work in all modern browsers. For equations, pick fonts with strong Mathematical Operators coverage (for example STIX, Cambria Math, or system math stacks):
👀 Live Preview
See U+2233 in short math-style snippets:
∳ or ∳ in UTF-8 HTML.🧠 How It Works
Hexadecimal code
∳ uses the Unicode hexadecimal value 2233. The x prefix marks hexadecimal format.
Decimal HTML code
∳ is the decimal equivalent (875510 = 223316). Either numeric form is valid in HTML text.
CSS entity
\2233 in a stylesheet (for example in content on ::after) emits the same code point. Use CSS escapes only in CSS, not raw in HTML text.
No named entity
HTML does not define a short named entity for U+2233. Use ∳, ∳, or the literal UTF-8 character in source.
Same visual result
All supported methods expose U+2233. Official name: ANTICLOCKWISE CONTOUR INTEGRAL (Mathematical Operators). Use numeric references in markup and \2233 only in CSS.
Use Cases
U+2233 is appropriate when you need the standard anticlockwise contour integral operator in readable HTML:
Cauchy’s theorem, residues, and line integrals with a positive (anticlockwise) boundary convention.
Equations in HTML-first articles, preprints, or course notes alongside other Unicode math symbols.
Circulation, path integrals, and field theory notation where orientation matters.
Textbooks, slides, and interactive pages that teach contour integration without full LaTeX rendering.
Toolbar inserts that output HTML entities or UTF-8 for lightweight math in CMS content.
Documents that reference Unicode math notation by code point or entity.
Add plain-language glosses (“anticlockwise contour integral around C”) or MathML where semantics matter for assistive tech.
💡 Best Practices
Do
- Use
∳or∳consistently within one document - Prefer math-capable font stacks for operator-heavy pages
- Contrast orientation with U+2232 (clockwise contour integral) when both appear
- Use
\2233only inside CSScontent, not pasted into HTML text - For serious layout, consider MathML or KaTeX/MathJax alongside entities
Don’t
- Assume every body font draws U+2233 with textbook proportions
- Confuse U+2233 with the generic contour integral U+222E (∮) or other integral variants
- Use HTML numeric references inside JavaScript strings (use
\u2233there instead) - Rely on the bare glyph alone where orientation is ambiguous; add text or context
- Mix hex and decimal references randomly in the same file without a project convention
Key Takeaways
Two HTML numeric forms for U+2233
∳ ∳CSS content escape
\2233Unicode U+2233 — ANTICLOCKWISE CONTOUR INTEGRAL
Mathematical Operators — no standard named HTML entity
For rich equations, pair entities with MathML or a math renderer when you need full semantics
❓ Frequently Asked Questions
∳ (hex), ∳ (decimal), or \2233 in CSS content. All render the same operator. There is no named entity.U+2233 (decimal 8755, hex 2233). Official name: ANTICLOCKWISE CONTOUR INTEGRAL. Block: Mathematical Operators.∳ or ∳ in text nodes. CSS uses backslash hex escapes inside content rules. Same code point; different syntax layer.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
