HTML Entity for Right Side Arc Clockwise Arrow (⤸)

What You'll Learn
How to display the Right Side Arc Clockwise Arrow (⤸) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+2938 (RIGHT SIDE ARC CLOCKWISE ARROW) in the Supplemental Arrows-B block (U+2900–U+297F)—an arc arrow pointing clockwise from the right side, often used in diagrams, rotation indicators, and technical notation.
Render it with ⤸ (named), ⤸, ⤸, or CSS \2938. Do not confuse ⤸ with U+2192 (→, simple rightwards arrow / →) or U+2939 (⤹, left side arc anticlockwise arrow / ⤹).
⚡ Quick Reference — Right Side Arc Clockwise Arrow
U+2938Supplemental Arrows-B
⤸Hexadecimal reference
⤸Decimal reference
⤸Most readable option
Name Value
──────────── ──────────
Unicode U+2938
Hex code ⤸
HTML code ⤸
Named entity ⤸
CSS code \2938
Meaning Right side arc clockwise arrow
Related U+2192 = rightwards arrow (→)
U+2939 = left side arc anticlockwise arrow (⤹)Complete HTML Example
A simple example showing the Right Side Arc Clockwise Arrow (⤸) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2938";
}
</style>
</head>
<body>
<p>Arrow (hex): ⤸</p>
<p>Arrow (decimal): ⤸</p>
<p>Arrow (named): ⤸</p>
<p id="point">Arrow (CSS): </p>
</body>
</html>🌐 Browser Support
The Right Side Arc Clockwise Arrow (⤸) is universally supported in all modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Right Side Arc Clockwise Arrow (⤸) rendered live in different contexts:
🧠 How It Works
Hexadecimal Code
⤸ uses the Unicode hexadecimal value 2938 for the Right Side Arc Clockwise Arrow. The x prefix indicates hexadecimal format.
Decimal HTML Code
⤸ uses the decimal Unicode value 10552 to display the same character.
Named Entity
⤸ is the semantic named entity — the easiest to read in source HTML and the most self-descriptive option.
CSS Entity
\2938 is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⤸. Unicode U+2938 is in the Supplemental Arrows-B block. Previous: Right Shaded White Right Arrow. Next: Right Single Quotation Mark.
Use Cases
The Right Side Arc Clockwise Arrow (⤸) is commonly used in:
Indicate clockwise flow, rotation, or curved path between elements.
Show clockwise rotation or “Turn right” in technical diagrams.
Document process flow, cycle direction, or arc-based navigation.
Display “rotate clockwise” or curved direction in interfaces.
Use in papers for clockwise or arc-arrow notation.
Represent curved or clockwise relations in formal notation.
💡 Best Practices
Do
- Use
⤸for readable source markup - Add
aria-labelor surrounding text for accessibility - Verify your font supports Supplemental Arrows-B (U+2938)
- Keep one entity style per project for consistency
- Provide context when the symbol denotes clockwise curved direction
Don’t
- Confuse ⤸ (arc clockwise) with → (straight rightwards arrow)
- Confuse ⤸ with ⤹ (left side arc anticlockwise arrow)
- Use CSS
\2938inside HTML text nodes - Assume all fonts render arc arrows identically
- Mix entity styles randomly in one file
- Use the symbol alone without explaining its clockwise meaning
Key Takeaways
Four HTML references plus CSS all render ⤸
⤸ ⤸ ⤸For CSS, use \2938 in the content property
Unicode U+2938 — Right Side Arc Clockwise Arrow
Prefer ⤸ for readability—it’s the named HTML entity
Previous: Right Shaded White Right Arrow Next: Right Single Quotation Mark
❓ Frequently Asked Questions
⤸ (hex), ⤸ (decimal), ⤸ (named), or \2938 in CSS content. All four methods render ⤸ correctly.U+2938 (Right Side Arc Clockwise Arrow). Supplemental Arrows-B block (U+2900–U+297F). Hex 2938, decimal 10552. Shows an arc arrow pointing clockwise from the right side.⤸, ⤸, or ⤸) go in markup. The CSS escape \2938 is used in stylesheets, typically on ::before or ::after. Both produce ⤸.⤸ is the named HTML entity for U+2938. You can also use ⤸ (decimal) or ⤸ (hex) and \2938 in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
