HTML Entity for Bottom Arc Anticlockwise Arrow (⤻)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+293B

What Is Bottom Arc Anticlockwise Arrow?

Bottom arc anticlockwise arrow (⤻) is Unicode U+293B in the Supplemental Arrows-B block. It is a curved anticlockwise arrow along a bottom arc — useful for rotation cues and diagrams. HTML has no standard named entity — use numeric or CSS forms (or type the character in UTF-8).

Remember
Character     ⤹
Unicode       U+293B
Hex entity    ⤻
Decimal       ⤻
Named entity  (none)
CSS escape    \293B
Not the same  U+293A (top arc anticlockwise arrow)

All of these produce the same glyph: ⤻. Prefer typing ⤹ in UTF-8 when you can; use ⤻ / ⤻ or CSS for generated content.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character⤹HTML text (UTF-8)
Named entityNone—
Hex entity⤻HTML markup
Decimal entity⤻HTML markup
CSS escape\293BStylesheet content

When to Use Which

SituationUse
Bottom-arc anticlockwise arrow⤻ or type ⤹
Top-arc anticlockwise arrowU+293A
Need an entity in HTML source⤻ or ⤻
Icon via CSScontent: "\293B" on ::before

Live Preview

Bottom arc anticlockwise arrow in study contexts.

Inline cue ⤻ Rotate left
Large glyph ⤻
vs. top arc ⤺ top  ·  ⤻ bottom
Accessible label anticlockwise Undo
With entities Hex: ⤻ | Decimal: ⤻

Complete HTML Example

One page that shows ⤹ with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce ⤻ in a single document (no named entity).

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Bottom Arc Anticlockwise Arrow (⤹) in HTML</title>
  <style>
    #point::after {
      content: "\293B";
    }
  </style>
</head>
<body>
  <p>Bottom arc anticlockwise arrow using Hex Code: &#x293B;</p>
  <p>Bottom arc anticlockwise arrow using HTML Code: &#10555;</p>
  <p id="point">Bottom arc anticlockwise arrow using CSS Entity: </p>
  <p>Typed directly: ⤻</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+293B → &#x293B; in HTML. The browser turns it into ⤻.

2. Decimal: same code point as 10555 → &#10555;. Same result as hex.

3. CSS: use \293B in content (not an HTML entity). #point::after appends that ⤻ after the paragraph text.

4. Typed ⤹: fine in UTF-8 source. All four lines show the same glyph.

Pitfalls & Tips

Common mistakes when working with bottom arc anticlockwise arrow (⤹).

Named

No &name; form

U+293B has no standard named entity — use &#x293B; or &#10555;.

Top

Not the top-arc arrow

For the top-arc form use U+293A.

a11y

Say the direction

Screen readers may not announce “anticlockwise.” Pair the glyph with visible or visually hidden text such as Rotate left.

Fonts

Check arrow coverage

Some UI fonts omit Supplemental Arrows-B. Prefer fonts with solid U+293B support.

CSS vs HTML

Do not mix escapes

\293B belongs in CSS. &#x293B; / &#10555; belong in HTML.

Semicolon

End references

Always finish with ; — write &#x293B;, not &#x293B.

Browser Support

Bottom arc anticlockwise arrow (U+293B) and its entity forms (&#x293B;, &#10555;, CSS \\293B) are supported in all mainstream browsers. Glyph quality depends on font support for Supplemental Arrows-B.

✓ Universal support

Bottom Arc Anticlockwise Arrow (⤹)

Type ⤹, or encode with hex, decimal, or CSS escape — same glyph everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+293B / entities Full support

Bottom line: Prefer a typed ⤹ or &#x293B; for markers. Use decimal when generating markup, and \\293B only inside CSS content.

Key Takeaways

  • Unicode: bottom arc anticlockwise arrow is U+293B (decimal 10555).
  • HTML: use &#x293B; or &#10555; (no named entity).
  • CSS: use \293B inside content for generated icons.
  • Watch out: U+293B ≠ U+293A (bottom ≠ top arc).

One line: U+293B → &#x293B; / &#10555; / CSS \293B.

Frequently Asked Questions

Use &#x293B; (hex), &#10555; (decimal), or the CSS escape \293B in the content property. All render ⤹. You can also paste ⤹ directly if your file is UTF-8. There is no standard named entity.
U+293B (hex 293B, decimal 10555). Unicode names it BOTTOM ARC ANTICLOCKWISE ARROW. It belongs to the Supplemental Arrows-B block.
No. HTML5 / WHATWG does not define a named character reference for U+293B. Prefer &#x293B;, &#10555;, or a typed ⤹ in UTF-8.
⤹ (U+293B) is bottom arc anticlockwise. U+293A is top arc anticlockwise. They are different code points.
HTML entities (&#10555; or &#x293B;) go in markup. The CSS escape \293B is used in stylesheets (usually in the content property of ::before/::after). Both render ⤹.
Use ⤹ for rotation cues, math/physics diagrams, and anticlockwise UI hints. Prefer clear text or ARIA labels when the direction must be obvious to screen readers.

Did you know?

Bottom arc anticlockwise arrow is Unicode U+293B (decimal 10555) in the Supplemental Arrows-B block — official name BOTTOM ARC ANTICLOCKWISE ARROW. There is no standard named HTML entity. It is not top arc anticlockwise arrow (U+293A).

Next: Bowtie

Learn the HTML entity for the bowtie symbol (⋈).

Next tutorial →

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