HTML Entity for Clockwise Gapped Circle Arrow (⟳)

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

What You'll Learn

How to display the Clockwise Gapped Circle Arrow (⟳) in HTML and CSS. This character is U+27F3 (CLOCKWISE GAPPED CIRCLE ARROW) in the Supplemental Arrows-A block (U+27F0–U+27FF). It is widely recognized as a refresh or sync icon in user interfaces.

There is no named HTML entity for U+27F3. Use ⟳ or ⟳ in markup, or \27F3 in stylesheet content. Do not confuse ⟳ with Clockwise Open Circle Arrow U+21BB (↻), Clockwise Closed Circle Arrow U+2941 (⥁), or the emoji refresh symbol U+1F504.

⚡ Quick Reference — Clockwise Gapped Circle Arrow

Unicode U+27F3

Supplemental Arrows-A (U+27F0–U+27FF)

Hex Code ⟳

Hexadecimal reference

HTML Code ⟳

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+27F3
Hex code       ⟳
HTML code      ⟳
Named entity   —
CSS code       \27F3
1

Complete HTML Example

This example shows U+27F3 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: "\27F3";
  }
 </style>
</head>
<body>
<p>Clockwise Gapped Circle Arrow using Hexa Decimal: &#x27F3;</p>
<p>Clockwise Gapped Circle Arrow using HTML Code: &#10227;</p>
<p id="point">Clockwise Gapped Circle Arrow using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+27F3 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 Gapped Circle Arrow in UI contexts:

Refresh / sync ⟳ Reload   ⟳ Sync
Loading hint ⟳ Updating…
Large glyph
vs related arrows Gapped: ⟳ (U+27F3)   Open: ↻ (U+21BB)   Closed: ⥁ (U+2941)
Monospace refs &#x27F3; &#10227; \27F3

🧠 How It Works

1

Hexadecimal Code

&#x27F3; references code point U+27F3 using hex digits 27F3.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce the Clockwise Gapped Circle Arrow glyph: . Unicode U+27F3 sits in Supplemental Arrows-A (U+27F0–U+27FF). No named HTML entity exists.

Use Cases

The Clockwise Gapped Circle Arrow (⟳) commonly appears in:

🔄 Refresh & reload

Browser-style reload buttons and page refresh controls.

🔄 Sync & update

Sync actions, data refresh, and update indicators in apps.

⏳ Loading UI

Loading spinners and progress hints suggesting rotation.

📊 Flow diagrams

Circular process flows and iterative workflow charts.

🧭 Navigation

Carousels, circular menus, and rotational navigation cues.

🔤 Symbol references

Unicode tables and Supplemental Arrows-A glossaries.

♿ Accessibility

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

💡 Best Practices

Do

  • Use &#x27F3; or &#10227; consistently in HTML
  • Provide visible “Reload” or “Sync” text on icon buttons
  • Choose fonts that support Supplemental Arrows-A (Segoe UI Symbol, Noto Sans Symbols)
  • Use \27F3 only inside CSS content, not in HTML text nodes
  • Set aria-label on icon-only refresh controls

Don’t

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

Key Takeaways

1

No named entity—use numeric references

&#x27F3; &#10227;
2

For CSS stylesheets, use the escape in the content property

\27F3
3

U+27F3 CLOCKWISE GAPPED CIRCLE ARROW

4

Popular refresh/sync icon in UI design

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x27F3; (hex), &#10227; (decimal), or \27F3 in CSS content. There is no named HTML entity for U+27F3.
U+27F3 (CLOCKWISE GAPPED CIRCLE ARROW). Supplemental Arrows-A (U+27F0–U+27FF). Hex 27F3, decimal 10227.
For refresh/reload buttons, sync controls, loading indicators, flow diagrams, circular navigation UI, and any interface requiring a familiar refresh arrow symbol.
Numeric references (&#10227; or &#x27F3;) go directly in HTML markup. The CSS escape \27F3 is used in stylesheets, typically in the content property of pseudo-elements.
No. Use &#x27F3;, &#10227;, or \27F3 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