HTML Entity for Anticlockwise Closed Circle Arrow ()

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

What You'll Learn

How to display the anticlockwise closed circle arrow (, U+2940) in HTML. Unicode’s official name is ANTICLOCKWISE CLOSED CIRCLE ARROW; it shows an anticlockwise arrow inside a circle and is useful for rotation, rewind, undo, or circular flow in interfaces and diagrams.

The character lives in the Supplemental Arrows-B Unicode block. There is no named HTML entity for U+2940, so you use ⥀ or ⥀ in markup, or \2940 in CSS content on pseudo-elements.

⚡ Quick Reference — Anticlockwise Closed Circle Arrow

Unicode U+2940

Supplemental Arrows-B block

Hex Code ⥀

Hexadecimal reference

HTML Code ⥀

Decimal reference

CSS Code \2940

Use in CSS content

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2940
Hex code       ⥀
HTML code      ⥀
Named entity   (none)
CSS code       \2940
1

Complete HTML Example

This example shows U+2940 using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2940";
  }
 </style>
</head>
<body>

<p>Anticlockwise Closed Circle Arrow using Hexa Decimal: &#x2940;</p>
<p>Anticlockwise Closed Circle Arrow using HTML Code: &#10560;</p>
<p id="point">Anticlockwise Closed Circle Arrow using CSS Entity: </p>

</body>
</html>
Try It Yourself

🌐 Browser Support

Numeric character references and CSS escapes for U+2940 are supported in all modern browsers. Rendering depends on fonts that include Supplemental Arrows-B glyphs:

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

👀 Live Preview

See U+2940 in short UI-style snippets:

Isolated glyph
With label ⥀ Rotate left
Numeric refs Same character as &#x2940; or &#10560; in UTF-8 HTML.
Monospace U+2940 ANTICLOCKWISE CLOSED CIRCLE ARROW
Pairing Pair with a clockwise closed circle arrow (U+2941) when both directions appear in one control strip, and always add visible text or aria-label for accessibility.

🧠 How It Works

1

Hexadecimal code

&#x2940; uses the Unicode hexadecimal value 2940. The x prefix marks hexadecimal format.

HTML markup
2

Decimal HTML code

&#10560; is the decimal equivalent (1056010 = 294016). Either numeric form is valid in HTML text.

HTML markup
3

CSS entity

\2940 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.

CSS stylesheet
4

No named entity

HTML does not define a short named entity for U+2940. Stick to &#x2940;, &#10560;, or the literal UTF-8 character in source.

HTML markup
=

Same visual result

All supported methods expose U+2940 (Supplemental Arrows-B). Official name: ANTICLOCKWISE CLOSED CIRCLE ARROW. Use numeric references in markup and \2940 only in CSS.

Use Cases

U+2940 is a good fit when you need a circular anticlockwise cue (always pair with text or an accessible name):

🔧 Navigation and UI

Rotation controls, “rotate left,” rewind, or circular back actions.

🎤 Media players

Rewind or seek-back affordances next to play and pause.

🔄 Rotation tools

Image editors and viewers that show counterclockwise rotation inside a circle.

📈 Diagrams

Circular or cyclic flow drawn counterclockwise in process or cycle charts.

⚙ Settings and dials

Circular selectors or knobs where anticlockwise means decrease or go back.

📐 Technical notation

Counterclockwise direction in geometry, mechanics, or angular conventions.

♿ Accessibility

Add aria-label or visible text (“Rewind,” “Rotate left”); the shape alone is ambiguous for screen readers.

💡 Best Practices

Do

  • Use &#x2940; or &#10560; consistently within one project
  • Choose a font stack with good coverage for supplemental arrows
  • Combine the glyph with visible text on buttons (for example “⥀ Rotate left”)
  • Use \2940 only inside CSS content, not pasted into HTML text
  • Offer a clockwise counterpart (U+2941) when users must pick direction explicitly

Don’t

  • Rely on the symbol alone for safety-critical or irreversible actions
  • Assume every system font draws U+2940 identically; test on mobile
  • Confuse U+2940 with the open-circle or semicircle arrow variants in other blocks
  • Use HTML numeric references inside JavaScript strings (use \u2940 there instead)
  • Forget focus styles and touch targets when the arrow is the whole control

Key Takeaways

1

Two HTML numeric forms for U+2940

&#x2940; &#10560;
2

CSS content escape

\2940
3

Unicode U+2940 — ANTICLOCKWISE CLOSED CIRCLE ARROW

4

Supplemental Arrows-B — no standard named HTML entity

5

Label the action for assistive technology; the circle arrow alone is not self-explanatory

❓ Frequently Asked Questions

Use &#x2940; (hex), &#10560; (decimal), or \2940 in CSS content. All render the same character. There is no named entity.
U+2940 (decimal 10560, hex 2940). Official name: ANTICLOCKWISE CLOSED CIRCLE ARROW. Block: Supplemental Arrows-B.
U+21B6 is a curved “return” style arrow in the Arrows block; U+2940 is explicitly a closed circle with an anticlockwise cue. Pick the shape that matches your UI language and user expectations.
Markup uses &#10560; or &#x2940; in text nodes. CSS uses backslash hex escapes inside content rules. Same code point; different syntax layer.
Named entities cover a relatively small set of characters. Many arrows and technical symbols, including U+2940, are referenced with numeric character references or UTF-8 literals.

Explore More HTML Entities!

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