HTML Entity for Bottom Arc Anticlockwise Arrow (⤻)

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

What You'll Learn

How to display the Bottom Arc Anticlockwise Arrow (⤻) in HTML and CSS. This character is U+293B in the Supplemental Arrows-B block (U+2900–U+297F). It depicts an arrow curving along the bottom of an implied circle with its arrowhead pointing left—indicating anticlockwise (counterclockwise) rotation or trajectory.

Its counterpart is the Bottom Arc Clockwise Arrow (⤼ U+293C). The symbol is classified as a math symbol and appears in vector field diagrams, physics illustrations of rotational forces, topology, and scientific notation. There is no named HTML entity for U+293B. Use ⤻ or ⤻ in markup, or \293B in stylesheet content.

⚡ Quick Reference — Bottom Arc Anticlockwise Arrow

Unicode U+293B

Supplemental Arrows-B (U+2900–U+297F)

Hex Code ⤻

Hexadecimal reference

HTML Code ⤻

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+293B
Hex code       ⤻
HTML code      ⤻
Named entity   —
CSS code       \293B
1

Complete HTML Example

This example shows U+293B using hexadecimal and decimal character references, plus a CSS content escape on a pseudo-element. There is no named HTML entity for this symbol:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\293B";
  }
 </style>
</head>
<body>
<p>Bottom Arc Anticlockwise Arrow using Hexa Decimal: &#x293B;</p>
<p>Bottom Arc Anticlockwise Arrow using HTML Code: &#10555;</p>
<p id="point">Bottom Arc Anticlockwise Arrow using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+293B is widely supported in modern browsers; arrow glyph artwork varies by typeface (Cambria Math, DejaVu Serif, and similar fonts render it best):

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the arrow at different sizes and beside its clockwise counterpart (font-dependent):

Large glyph
Rotation pair ⤻ anticlockwise  |  ⤼ clockwise
UI context ⤻ Undo rotation  ·  ⤼ Redo rotation
Caption U+293B is BOTTOM ARC ANTICLOCKWISE ARROW; U+293C is the clockwise counterpart in Supplemental Arrows-B.
Monospace refs &#x293B; &#10555; \293B

🧠 How It Works

1

Hexadecimal Code

&#x293B; references code point U+293B using hex digits 293B after the #x prefix.

HTML markup
2

Decimal HTML Code

&#10555; is the decimal equivalent (10555) for the same Bottom Arc Anticlockwise Arrow character.

HTML markup
3

CSS Entity

\293B is the CSS escape for U+293B, used in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

Hex, decimal, and CSS escapes all produce . There is no named HTML entity for U+293B. The related Bottom Arc Clockwise Arrow is U+293C (⤼).

Use Cases

The Bottom Arc Anticlockwise Arrow (⤻) is commonly used for:

📐 Math notation

Mathematical expressions, equations, and scientific notation involving rotation or direction.

🔬 Physics diagrams

Vector field illustrations, rotational force diagrams, and physics education content.

🧭 UI navigation

Directional indicators, carousel controls, and navigation arrows in web interfaces.

↩ Undo/redo

Undo buttons, rollback indicators, and reverse-action controls.

📊 Technical diagrams

Topology, flowcharts, process diagrams, and scientific illustrations.

📱 Directional indicators

Rotation controls, scroll indicators, and curved path or trajectory displays.

♿ Accessibility

Pair ⤻ with text or aria-label (e.g. “Anticlockwise” or “Counterclockwise”).

💡 Best Practices

Do

  • Use hex or decimal consistently—there is no named entity for U+293B
  • Pair ⤻ with ⤼ (clockwise) for bidirectional rotation displays
  • Choose fonts that support Supplemental Arrows-B (e.g. Cambria Math, DejaVu Serif)
  • Use \293B only inside CSS content, not inside HTML text nodes
  • Add aria-label when the arrow conveys an action (e.g. “Rotate counterclockwise”)

Don’t

  • Confuse U+293B (anticlockwise) with U+293C (clockwise bottom arc)
  • Assume every system font renders Supplemental Arrows-B crisply at small sizes
  • Rely on the symbol alone without visible text or labels for critical actions
  • Mix CSS escapes into HTML text nodes (use numeric refs in markup)
  • Use generic arrow entities when a curved arc arrow is specifically needed

Key Takeaways

1

Two numeric references render the same glyph

&#x293B; &#10555;
2

CSS content escape

\293B
3

U+293B indicates anticlockwise rotation along a bottom arc; counterpart U+293C

4

Supplemental Arrows-B block U+2900–U+297F; no named HTML entity

5

Pair arc arrows with text or ARIA when meaning must be clear

❓ Frequently Asked Questions

Use &#x293B; (hex), &#10555; (decimal), or \293B in CSS content. There is no named entity; all valid methods render ⤻.
U+293B (hex 293B, decimal 10555). Supplemental Arrows-B (U+2900–U+297F). The symbol indicates anticlockwise rotation along a bottom arc.
For math notation, physics diagrams, vector field illustrations, rotational force diagrams, topology, UI navigation, directional indicators, undo/redo interfaces, and scientific or technical content.
Numeric references belong in HTML. The \293B escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.
No. Use &#x293B;, &#10555;, or \293B in CSS depending on whether you are authoring markup or styles.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, 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