HTML Entity for Clockwise Integral (∱)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+2231

What Is the Clockwise Integral Entity?

Clockwise Integral (∱) is the Unicode character at U+2231 in the Mathematical Operators block (official name: CLOCKWISE INTEGRAL). It is the integral symbol with a clockwise orientation, used in specialized calculus and physics notation.

Remember
Character     ∱
Unicode       U+2231
Hex entity    ∱
Decimal       ∱
Named entity  ∱
CSS escape    \2231

All of these produce the same glyph: ∱. Prefer ∱ or a typed ∱ in hand-written HTML; use numeric forms when generating markup.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character∱HTML text (UTF-8)
Named entity∱HTML markup
Hex entity∱HTML markup
Decimal entity∱HTML markup
CSS escape\2231Stylesheet content

When to Use Which

SituationUse
Hand-written HTML∱ or type ∱
Generated / numeric-only markup∱ or ∱
Generated text via ::before / ::aftercontent: "\2231"
Plain integral (no direction)Use ∫ (U+222B / ∫), not ∱
Clockwise contour integral∲ U+2232 (∲)

Live Preview

Clockwise integral rendered in common writing contexts.

Inline math ∱ f(x) dx
Large glyph ∱
Compared ∱   ∫   ∲
Monospace op: ∱ cw integral
With entities Named: ∱ | Hex: ∱ | Decimal: ∱

Complete HTML Example

One page that shows Clockwise Integral with the named entity, hex entity, decimal entity, CSS escape, and a typed character. Use View Output or open the live editor.

Named + Hex + Decimal + CSS + Typed

Five ways to produce ∱ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Clockwise Integral (∱) in HTML</title>
  <style>
    #point::after {
      content: "\2231";
    }
  </style>
</head>
<body>
  <p>Clockwise Integral using Named Entity: &cwint;</p>
  <p>Clockwise Integral using Hex Code: &#x2231;</p>
  <p>Clockwise Integral using HTML Code: &#8753;</p>
  <p id="point">Clockwise Integral using CSS Entity: </p>
  <p>Typed directly: ∱</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &cwint; is the HTML5 named reference for U+2231 → ∱.

2. Hex: U+2231 → &#x2231; in HTML. Same glyph as the named form.

3. Decimal: same code point as 8753 → &#8753;. Same result as hex.

4. CSS: use \2231 in content (not an HTML entity). #point::after appends that ∱ after the paragraph text.

5. Typed ∱: fine in UTF-8 pages. All five lines show the same glyph.

Pitfalls & Tips

Common mistakes when working with Clockwise Integral entities.

Named

Use &cwint;

That is the named form for ∱. Always end with ;.

CSS vs HTML

Do not mix escapes

\2231 belongs in CSS. &cwint; / &#x2231; / &#8753; belong in HTML.

∱ vs ∫

Different characters

∱ is U+2231. Plain integral ∫ is U+222B (&int;).

A11y

Name the operator

Pair ∱ with prose or an accessible name (e.g. “clockwise integral”) so screen readers get the meaning.

Semicolon

End references

Always finish with ; — write &cwint; and &#8753;, not bare forms.

Fonts

Math coverage varies

Some fonts lack ∱. If it falls back to a box, try a math-capable font or use MathML / KaTeX for equations.

Browser Support

Clockwise Integral (U+2231) and its entity forms (&cwint;, &#x2231;, &#8753;, CSS \\2231) are supported in all mainstream browsers.

✓ Universal support

Clockwise Integral (∱)

Type ∱, or encode with named, hex, decimal, or CSS escape — same glyph everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+2231 / entities Full support

Bottom line: Prefer &cwint; or a typed ∱ for clockwise integrals. Use decimal when generating markup, and \\2231 only inside CSS content.

Key Takeaways

  • Unicode: clockwise integral is U+2231 (decimal 8753).
  • HTML: prefer &cwint; (also &#x2231;, &#8753;).
  • CSS: use \2231 inside content for generated text.
  • Watch out: ∱ ≠ ∫ ≠ ∲ (clockwise ≠ plain ≠ contour).

One line: U+2231 → &cwint; / &#x2231; / &#8753; / CSS \2231.

Frequently Asked Questions

Use &#x2231; (hex), &#8753; (decimal), &cwint; (named), or the CSS escape \2231 in the content property. All render ∱. You can also paste ∱ directly when your file is UTF-8.
U+2231 (hex 2231, decimal 8753). Unicode names it CLOCKWISE INTEGRAL. It belongs to the Mathematical Operators block.
Yes. &cwint; is the HTML5 named reference for ∱. Numeric forms &#8753; and &#x2231; also work.
Use it in math or physics pages when you need a clockwise integral symbol. For complex equations, MathML or a math library may be clearer than a lone glyph.
HTML entities (&cwint;, &#8753;, or &#x2231;) go in markup. The CSS escape \2231 goes in stylesheet strings (usually content on ::before/::after).
∫ (U+222B / &int;) is the plain integral. ∱ (U+2231 / &cwint;) adds a clockwise sense. ∲ (U+2232 / &cwconint;) is the clockwise contour integral. Do not mix them up.

Did you know?

Clockwise integral is Unicode U+2231 (decimal 8753) — official name CLOCKWISE INTEGRAL in the Mathematical Operators block. HTML named reference is &cwint;. It is not the plain integral ∫ (U+222B / &int;) or the clockwise contour integral ∲ (U+2232 / &cwconint;).

Next: Clockwise Open Circle Arrow

Learn the HTML entity for clockwise open circle arrow (U+21BB).

Clockwise Open Circle Arrow tutorial →

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