HTML Entity for Lower Right Semicircular Clockwise Arrow (⤾)

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

What You'll Learn

How to display the Lower Right Semicircular Clockwise Arrow (⤾) in HTML using various entity methods. This symbol shows a curved arrow in the lower-right quadrant pointing clockwise and is useful for rotation indicators, navigation, diagrams, and UI elements.

This character is part of the Supplemental Arrows-B Unicode block and can be rendered with a hexadecimal reference, a decimal reference, or a CSS escape in the content property. There is no named HTML entity for this arrow.

⚡ Quick Reference — Lower Right Semicircular Clockwise Arrow Entity

Unicode U+293E

Supplemental Arrows-B

Hex Code ⤾

Hexadecimal reference

HTML Code ⤾

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+293E
Hex code       ⤾
HTML code      ⤾
Named entity   (none)
CSS code       \293E
Meaning        Lower right semicircular clockwise arrow
Related        U+293F = ⤿ (anticlockwise counterpart)
Block          Supplemental Arrows-B (U+2900–U+297F)
1

Complete HTML Example

A simple example showing the Lower Right Semicircular Clockwise Arrow (⤾) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\293E";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x293E;</p>
<p>Symbol (decimal): &#10558;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Lower Right Semicircular Clockwise Arrow (⤾) is supported in modern browsers when the font includes Supplemental Arrows-B glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Lower Right Semicircular Clockwise Arrow (⤾) in navigation and UI contexts:

Large glyph
RotationRotate clockwise ⤾
NavigationTurn right ⤾ ahead
Redo actionRedo ⤾ last step
Numeric refs&#x293E; &#10558; \293E

🧠 How It Works

1

Hexadecimal Code

&#x293E; uses the Unicode hexadecimal value 293E to display the arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#10558; uses the decimal Unicode value 10558 to display the same character. This is one of the most commonly used methods.

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+293E sits in Supplemental Arrows-B. The anticlockwise counterpart is U+293F (⤿). There is no named HTML entity.

Use Cases

The Lower Right Semicircular Clockwise Arrow (⤾) is commonly used in:

🔄 Rotation & direction

Indicate clockwise rotation in controls, dials, sliders, or instructions.

🧭 Navigation

Show curved or turn directions in maps, wayfinding UI, and navigation elements.

📐 Math & physics

Denote curved trajectories, clockwise rotation, or transformations in diagrams.

📊 Flowcharts

Represent loops, forward flow, or clockwise progression in flowcharts and process diagrams.

↪ Redo & forward

Suggest redo, forward, or go-ahead actions in toolbars and buttons.

🎨 Design & typography

Use as a decorative or functional arrow in graphic design and typographic layouts.

⚙ Settings & controls

Mark increase, fast-forward, or clockwise options in sliders, knobs, and controls.

💡 Best Practices

Do

  • Pair ⤾ with text or aria-label (e.g. “Clockwise”) for accessibility
  • Use numeric references (&#x293E; or &#10558;) consistently in HTML
  • Use U+293F (⤿) when you need the anticlockwise counterpart instead
  • Verify Supplemental Arrows-B glyph support in your target fonts
  • Use \293E in CSS content when inserting via pseudo-elements

Don’t

  • Confuse ⤾ (clockwise) with ⤿ (anticlockwise U+293F)
  • Put CSS escape \293E in HTML text nodes
  • Expect a named HTML entity—only numeric codes work for ⤾
  • Use the arrow alone when direction is critical—add explanatory text
  • Mix entity styles randomly in one file

Key Takeaways

1

Three references render ⤾ (no named entity)

&#x293E; &#10558;
2

For CSS stylesheets, use the escape in the content property

\293E
3

Unicode U+293E — LOWER RIGHT SEMICIRCULAR CLOCKWISE ARROW

4

Anticlockwise counterpart: U+293F (⤿) in Supplemental Arrows-B

❓ Frequently Asked Questions

Use &#x293E; (hex), &#10558; (decimal), or \293E in CSS content. All produce ⤾. There is no named HTML entity.
U+293E (LOWER RIGHT SEMICIRCULAR CLOCKWISE ARROW). Supplemental Arrows-B block. Hex 293E, decimal 10558. It depicts a curved arrow in the lower-right quadrant pointing clockwise.
For rotation or clockwise indicators, navigation UI, math and physics diagrams, flowcharts, redo or forward actions, and any content where a semicircular clockwise arrow is needed.
HTML code (&#10558; or &#x293E;) is used in HTML content. The CSS entity (\293E) is used in CSS, e.g. in the content property of ::before or ::after. Both produce ⤾ but in different contexts.
Named HTML entities are typically reserved for ASCII, Latin-1, and some common symbols. Arrow characters like ⤾ use numeric codes (hex or decimal) because they are part of specialized Unicode blocks.

Explore More HTML Entities!

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