HTML Entity for Lower Left Semicircular Anticlockwise Arrow (⤿)

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

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

Unicode U+293F

Supplemental Arrows-B

Hex Code ⤿

Hexadecimal reference

HTML Code ⤿

Decimal reference

Named Entity

No named entity

Reference Table
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)
1

Complete HTML Example

A simple example showing the Lower Left Semicircular Anticlockwise Arrow (⤿) using hexadecimal code, decimal HTML code, and a CSS content escape:

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

🌐 Browser Support

The Lower Left Semicircular Anticlockwise 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 Left Semicircular Anticlockwise Arrow (⤿) in navigation and UI contexts:

Large glyph⤿
RotationRotate anticlockwise ⤿
NavigationTurn left ⤿ ahead
Undo actionUndo ⤿ last step
Numeric refs&#x293F; &#10559; \293F

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\293F 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+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:

🔄 Rotation & direction

Indicate anticlockwise (counterclockwise) rotation in controls, dials, or instructions.

🧭 Navigation

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

📐 Math & physics

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

📊 Flowcharts

Represent loops, returns, or anticlockwise flow in flowcharts and process diagrams.

↩ Undo & reverse

Suggest undo, reverse, or go-back actions in toolbars and buttons.

🎨 Design & typography

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

⚙ Settings & controls

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 (&#x293F; or &#10559;) consistently in HTML
  • Use U+293E (⤾) when you need the clockwise counterpart instead
  • Verify Supplemental Arrows-B glyph support in your target fonts
  • Use \293F in CSS content when inserting via pseudo-elements

Don’t

  • Confuse ⤿ (anticlockwise) with ⤾ (clockwise U+293E)
  • Put CSS escape \293F 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)

&#x293F; &#10559;
2

For CSS stylesheets, use the escape in the content property

\293F
3

Unicode U+293F — LOWER LEFT SEMICIRCULAR ANTICLOCKWISE ARROW

4

Clockwise counterpart: U+293E (⤾) in Supplemental Arrows-B

❓ Frequently Asked Questions

Use &#x293F; (hex), &#10559; (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.
For rotation or anticlockwise indicators, navigation UI, math and physics diagrams, flowcharts, undo or reverse actions, and any content where a semicircular anticlockwise arrow is needed.
HTML code (&#10559; or &#x293F;) 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.
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