HTML Entity for Left Side Arc Anticlockwise Arrow (⤹)

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