HTML Entity for Lower Right Semicircular Clockwise Arrow (⤾)

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
U+293ESupplemental Arrows-B
⤾Hexadecimal reference
⤾Decimal reference
—No named entity
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)Complete HTML Example
A simple example showing the Lower Right Semicircular Clockwise Arrow (⤾) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\293E";
}
</style>
</head>
<body>
<p>Symbol (hex): ⤾</p>
<p>Symbol (decimal): ⤾</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The Lower Right Semicircular Clockwise Arrow (⤾) is supported in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Lower Right Semicircular Clockwise Arrow (⤾) in navigation and UI contexts:
🧠 How It Works
Hexadecimal Code
⤾ uses the Unicode hexadecimal value 293E to display the arrow. The x prefix indicates hexadecimal format.
Decimal HTML Code
⤾ uses the decimal Unicode value 10558 to display the same character. This is one of the most commonly used methods.
CSS Entity
\293E is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
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:
Indicate clockwise rotation in controls, dials, sliders, or instructions.
Show curved or turn directions in maps, wayfinding UI, and navigation elements.
Denote curved trajectories, clockwise rotation, or transformations in diagrams.
Represent loops, forward flow, or clockwise progression in flowcharts and process diagrams.
Suggest redo, forward, or go-ahead actions in toolbars and buttons.
Use as a decorative or functional arrow in graphic design and typographic layouts.
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 (
⤾or⤾) consistently in HTML - Use U+293F (⤿) when you need the anticlockwise counterpart instead
- Verify Supplemental Arrows-B glyph support in your target fonts
- Use
\293Ein CSScontentwhen inserting via pseudo-elements
Don’t
- Confuse ⤾ (clockwise) with ⤿ (anticlockwise U+293F)
- Put CSS escape
\293Ein 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
Three references render ⤾ (no named entity)
⤾ ⤾For CSS stylesheets, use the escape in the content property
\293EUnicode U+293E — LOWER RIGHT SEMICIRCULAR CLOCKWISE ARROW
Anticlockwise counterpart: U+293F (⤿) in Supplemental Arrows-B
Previous: Lower Right Pencil (✎) Next: Lower Right Shadowed White Square
❓ Frequently Asked Questions
⤾ (hex), ⤾ (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.⤾ or ⤾) 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.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, and more.
8 people found this page helpful
