HTML Entity for Clockwise Arrow (↷)

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

What You'll Learn

How to display the Clockwise Arrow (↷) in HTML using numeric references, named entities, and CSS escapes. This character is U+21B7 (CLOCKWISE ARROW WITH TIP DOWN TO LEFT) in the Arrows block (U+2190–U+21FF). It indicates clockwise rotation or directional flow in UI and documentation.

You can use the named entity ↷, hex ↷, decimal ↷, or CSS \21B7. Do not confuse ↷ with Clockwise Open Circle Arrow U+21BB (↻), Anticlockwise Open Circle Arrow U+21BA (↺), or plain Rightwards Arrow U+2192 (→).

⚡ Quick Reference — Clockwise Arrow

Unicode U+21B7

Arrows block

Hex Code ↷

Hexadecimal reference

HTML Code ↷

Decimal reference

Named Entity ↷

Standard HTML entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21B7
Hex code       ↷
HTML code      ↷
Named entity   ↷
CSS code       \21B7
1

Complete HTML Example

This example demonstrates the Clockwise Arrow (↷) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\21B7";
  }
 </style>
</head>
<body>
<p>Clockwise Arrow using Hexa Decimal: &#x21B7;</p>
<p>Clockwise Arrow using HTML Code: &#8631;</p>
<p>Clockwise Arrow using HTML Entity: &curarr;</p>
<p id="point">Clockwise Arrow using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Clockwise Arrow entity is universally supported in all modern browsers:

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

👀 Live Preview

See the Clockwise Arrow in UI and navigation contexts:

Refresh button ↷ Reload   ↷ Refresh
Named entity Rotate &curarr; clockwise
Large glyph
vs related arrows Curved: ↷ (U+21B7)   Open circle: ↻ (U+21BB)   Right: → (U+2192)
Monospace refs &#x21B7; &#8631; &curarr; \21B7

🧠 How It Works

1

Hexadecimal Code

&#x21B7; uses the Unicode hexadecimal value 21B7 to display the Clockwise Arrow.

HTML markup
2

Decimal HTML Code

&#8631; uses the decimal Unicode value 8631 to display the same character.

HTML markup
3

Named HTML Entity

&curarr; is the standard named entity for U+21B7—short for “curved arrow.”

HTML markup
4

CSS Entity

\21B7 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the Clockwise Arrow glyph: . Unicode U+21B7 sits in Arrows (U+2190–U+21FF).

Use Cases

The Clockwise Arrow (↷) commonly appears in:

🔄 Refresh & rotate

Reload buttons, rotate controls, and UI elements indicating clockwise motion.

🧭 Navigation

Directional cues, turn instructions, and wayfinding indicators in apps.

📊 Flowcharts

Process flows, cycle diagrams, and schematics showing clockwise direction.

📄 Documentation

Manuals and guides describing “turn clockwise” or rotation steps.

💻 Software UI

Settings panels, rotation toggles, and directional control labels.

🔤 Symbol references

Unicode tables and arrow character glossaries.

♿ Accessibility

Pair with visible text or aria-label="clockwise arrow" for screen readers.

💡 Best Practices

Do

  • Prefer &curarr; for readable HTML source on refresh/rotate controls
  • Provide visible text labels alongside icon-only arrow buttons
  • Use aria-hidden="true" on decorative arrows with text alternatives nearby
  • Keep entity style consistent within a document
  • Choose fonts that render Arrows block glyphs clearly

Don’t

  • Confuse U+21B7 (↷) with U+21BB open circle arrow (↻)
  • Put CSS escape \21B7 inside HTML text nodes
  • Rely on the glyph alone without accessible labels on interactive controls
  • Use ↷ when a plain right arrow (→) is intended
  • Mix entity styles randomly in one file

Key Takeaways

1

Named entity is the easiest option

&curarr;
2

Numeric references also render ↷

&#x21B7; &#8631;
3

For CSS stylesheets, use the escape in the content property

\21B7
4

U+21B7 CLOCKWISE ARROW WITH TIP DOWN TO LEFT

5

Four methods, one glyph — all widely supported

❓ Frequently Asked Questions

Use &curarr; (named entity), &#x21B7; (hex), &#8631; (decimal), or \21B7 in CSS content. All produce ↷.
U+21B7 (CLOCKWISE ARROW WITH TIP DOWN TO LEFT). Arrows block (U+2190–U+21FF). Hex 21B7, decimal 8631.
For refresh/rotate UI controls, navigation indicators, flowcharts, instructional content, and any web content requiring a clockwise directional or rotational symbol.
HTML entities (&curarr;, &#8631;, or &#x21B7;) go directly in markup. The CSS escape \21B7 is used in stylesheets, typically in the content property of pseudo-elements.
Yes. &curarr; is the named entity for U+21B7. Clockwise Open Circle Arrow is a different character: U+21BB (↻).

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