HTML Entity for Clockwise Closed Circle Arrow (⥁)

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

What You'll Learn

How to display the Clockwise Closed Circle Arrow (⥁) in HTML and CSS. This character is U+2941 (CLOCKWISE CLOSED CIRCLE ARROW) in the Supplemental Arrows-B block (U+2900–U+297F). It depicts a clockwise arrow forming a closed circular path—commonly used for refresh, reload, and rotation UI.

There is no named HTML entity for U+2941. Use ⥁ or ⥁ in markup, or \2941 in stylesheet content. Do not confuse ⥁ with Clockwise Open Circle Arrow U+21BB (↻), Clockwise Arrow U+21B7 (↷, ↷), or Anticlockwise Closed Circle Arrow U+2940 (⥀).

⚡ Quick Reference — Clockwise Closed Circle Arrow

Unicode U+2941

Supplemental Arrows-B (U+2900–U+297F)

Hex Code ⥁

Hexadecimal reference

HTML Code ⥁

Decimal reference

Named Entity

None (use numeric refs)

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

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2941";
  }
 </style>
</head>
<body>
<p>Clockwise Closed Circle Arrow using Hexa Decimal: &#x2941;</p>
<p>Clockwise Closed Circle Arrow using HTML Code: &#10561;</p>
<p id="point">Clockwise Closed Circle Arrow using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2941 is supported in modern browsers; glyph appearance may vary by font:

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

👀 Live Preview

See the Clockwise Closed Circle Arrow in UI contexts:

Refresh button ⥁ Reload   ⥁ Refresh
Rotate control Rotate ⥁ clockwise
Large glyph
vs related arrows Closed: ⥁ (U+2941)   Open: ↻ (U+21BB)   Curved: ↷ (U+21B7)
Monospace refs &#x2941; &#10561; \2941

🧠 How It Works

1

Hexadecimal Code

&#x2941; references code point U+2941 using hex digits 2941.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce the Clockwise Closed Circle Arrow glyph: . Unicode U+2941 sits in Supplemental Arrows-B (U+2900–U+297F). No named HTML entity exists.

Use Cases

The Clockwise Closed Circle Arrow (⥁) commonly appears in:

🔄 Refresh & reload

Reload buttons and browser-style refresh controls in web applications.

🔄 Rotation controls

Clockwise rotation in image editors, 3D viewers, and design tools.

📊 Flow diagrams

Process charts and flowcharts showing clockwise circular flow.

⏳ Loading indicators

Spinners and progress UI suggesting rotational motion.

🧭 Navigation

Circular navigation, carousels, and directional rotation cues.

🔤 Symbol references

Unicode tables and Supplemental Arrows-B glossaries.

♿ Accessibility

Pair with visible text or aria-label="refresh" on interactive controls.

💡 Best Practices

Do

  • Use &#x2941; or &#10561; consistently in HTML
  • Provide visible text labels on refresh/rotate buttons
  • Choose fonts that support Supplemental Arrows-B (Segoe UI Symbol, Noto Sans Symbols)
  • Use \2941 only inside CSS content, not in HTML text
  • Set aria-label on icon-only controls for screen readers

Don’t

  • Confuse U+2941 (⥁) with U+21BB open circle arrow (↻)
  • Assume a named entity exists—U+2941 has none
  • Rely on the glyph alone without accessible labels on buttons
  • Use U+02941 notation—the correct code point is U+2941
  • Mix hex and decimal styles randomly in one file

Key Takeaways

1

No named entity—use numeric references

&#x2941; &#10561;
2

For CSS stylesheets, use the escape in the content property

\2941
3

U+2941 CLOCKWISE CLOSED CIRCLE ARROW

4

Supplemental Arrows-B block U+2900–U+297F

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x2941; (hex), &#10561; (decimal), or \2941 in CSS content. There is no named HTML entity for U+2941.
U+2941 (CLOCKWISE CLOSED CIRCLE ARROW). Supplemental Arrows-B (U+2900–U+297F). Hex 2941, decimal 10561.
For refresh/reload buttons, rotation controls, flow diagrams, loading indicators, circular navigation UI, and any interface requiring a clockwise closed-circle arrow symbol.
Numeric references (&#10561; or &#x2941;) go directly in HTML markup. The CSS escape \2941 is used in stylesheets, typically in the content property of pseudo-elements.
No. Use &#x2941;, &#10561;, or \2941 in CSS. Clockwise Open Circle Arrow is U+21BB (↻)—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