HTML Entity for Lower Left Semicircular Anticlockwise Arrow (⤿)

What You'll Learn
How to display the Lower Left Semicircular Anticlockwise Arrow (⤿) in HTML using various entity methods. This symbol shows a curved arrow in the lower-left quadrant pointing anticlockwise (counterclockwise) 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 Left Semicircular Anticlockwise Arrow Entity
U+293FSupplemental Arrows-B
⤿Hexadecimal reference
⤿Decimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+293F
Hex code ⤿
HTML code ⤿
Named entity (none)
CSS code \293F
Meaning Lower left semicircular anticlockwise arrow
Related U+293E = ⤾ (clockwise counterpart)
Block Supplemental Arrows-B (U+2900–U+297F)Complete HTML Example
A simple example showing the Lower Left Semicircular Anticlockwise Arrow (⤿) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\293F";
}
</style>
</head>
<body>
<p>Symbol (hex): ⤿</p>
<p>Symbol (decimal): ⤿</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The Lower Left Semicircular Anticlockwise Arrow (⤿) is supported in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Lower Left Semicircular Anticlockwise Arrow (⤿) in navigation and UI contexts:
🧠 How It Works
Hexadecimal Code
⤿ uses the Unicode hexadecimal value 293F to display the arrow. The x prefix indicates hexadecimal format.
Decimal HTML Code
⤿ uses the decimal Unicode value 10559 to display the same character. This is one of the most commonly used methods.
CSS Entity
\293F 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+293F sits in Supplemental Arrows-B. The clockwise counterpart is U+293E (⤾). There is no named HTML entity.
Use Cases
The Lower Left Semicircular Anticlockwise Arrow (⤿) is commonly used in:
Indicate anticlockwise (counterclockwise) rotation in controls, dials, or instructions.
Show curved or turn directions in maps, wayfinding UI, and navigation elements.
Denote curved trajectories, anticlockwise rotation, or transformations in diagrams.
Represent loops, returns, or anticlockwise flow in flowcharts and process diagrams.
Suggest undo, reverse, or go-back actions in toolbars and buttons.
Use as a decorative or functional arrow in graphic design and typographic layouts.
Mark decrease, rewind, or anticlockwise options in sliders, knobs, and controls.
💡 Best Practices
Do
- Pair ⤿ with text or
aria-label(e.g. “Anticlockwise”) for accessibility - Use numeric references (
⤿or⤿) consistently in HTML - Use U+293E (⤾) when you need the clockwise counterpart instead
- Verify Supplemental Arrows-B glyph support in your target fonts
- Use
\293Fin CSScontentwhen inserting via pseudo-elements
Don’t
- Confuse ⤿ (anticlockwise) with ⤾ (clockwise U+293E)
- Put CSS escape
\293Fin 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
\293FUnicode U+293F — LOWER LEFT SEMICIRCULAR ANTICLOCKWISE ARROW
Clockwise counterpart: U+293E (⤾) in Supplemental Arrows-B
Previous: Lower Blade Scissors (✃) Next: Lower Right Drop Shadowed White Square
❓ Frequently Asked Questions
⤿ (hex), ⤿ (decimal), or \293F in CSS content. All produce ⤿. There is no named HTML entity.U+293F (LOWER LEFT SEMICIRCULAR ANTICLOCKWISE ARROW). Supplemental Arrows-B block. Hex 293F, decimal 10559. It depicts a curved arrow in the lower-left quadrant pointing anticlockwise.⤿ or ⤿) is used in HTML content. The CSS entity (\293F) 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
