HTML Entity for Top Arc Anticlockwise Arrow Plus (⤽)

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

What You'll Learn

How to display the Top Arc Anticlockwise Arrow Plus (⤽) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+293D (TOP ARC ANTICLOCKWISE ARROW WITH PLUS) in the Supplemental Arrows-B block (U+2900–U+297F)—a curved anticlockwise arrow with a plus sign, used for undo actions, resets, and cyclic operations.

Render it with ⤽ (named), ⤽, ⤽, or CSS escape \293D. Do not confuse ⤽ with U+293A (⤺, top arc anticlockwise arrow without plus) or U+293C (⤼, top arc clockwise arrow minus / ⤼).

⚡ Quick Reference — Top Arc Anticlockwise Arrow Plus

Unicode U+293D

Supplemental Arrows-B

Hex Code ⤽

Hexadecimal reference

HTML Code ⤽

Decimal reference

Named Entity ⤽

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+293D
Hex code       ⤽
HTML code      ⤽
Named entity   ⤽
CSS code       \293D
Block          Supplemental Arrows-B (U+2900–U+297F)
Official name  TOP ARC ANTICLOCKWISE ARROW WITH PLUS
Related        U+293A = top arc anticlockwise arrow (⤺), U+293C = top arc clockwise arrow minus (⤼)
1

Complete HTML Example

This example demonstrates the Top Arc Anticlockwise Arrow Plus (⤽) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\293D";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x293D;</p>
<p>Using HTML Code: &#10557;</p>
<p>Using Named Entity: &cularrp;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Top Arc Anticlockwise Arrow Plus is widely supported in modern browsers when fonts include Supplemental Arrows-B glyphs:

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

👀 Live Preview

See the Top Arc Anticlockwise Arrow Plus (⤽) in UI context:

Undo / reset ⤽ Undo last action
Large glyph
Compare ⤺ base  |  ⤽ plus
Numeric refs &cularrp; &#x293D; &#10557; \293D

🧠 How It Works

1

Hexadecimal Code

&#x293D; uses the Unicode hexadecimal value 293D to display the Top Arc Anticlockwise Arrow Plus.

HTML markup
2

Decimal HTML Code

&#10557; uses the decimal Unicode value 10557 to display the same character.

HTML markup
3

Named Entity

&cularrp; is the semantic named entity — the easiest to read in source HTML and the most self-descriptive option.

HTML markup
4

CSS Entity

\293D is used in CSS stylesheets in the content property of pseudo-elements like ::after.

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+293D in Supplemental Arrows-B. Previous: Top Arc Anticlockwise Arrow. Next: Top Arc Clockwise Arrow Minus.

Use Cases

The Top Arc Anticlockwise Arrow Plus (⤽) commonly appears in:

↩ Undo Actions

Reverse operations and undo buttons in editors.

🔄 Resets

Restore defaults and return-to-previous-state controls.

↺ Cyclic Operations

Counterclockwise rotation and circular process flows.

🔢 Math Notation

Directional and rotational indicators in formulas.

💻 UI Controls

Interactive panels and navigation interface elements.

🗺 Directional UI

Wayfinding and counterclockwise direction indicators.

📚 Technical Docs

Diagrams and documentation for reverse operations.

💡 Best Practices

Do

  • Use &cularrp; for readable source markup
  • Add aria-label (e.g. “Undo” or “Reset”) for accessibility
  • Verify fonts support Supplemental Arrows-B (U+293D)
  • Pair the symbol with text labels in control panels
  • Test rendering across browsers and font stacks

Don’t

  • Confuse ⤽ (plus variant) with ⤺ (base anticlockwise arrow)
  • Confuse ⤽ with ⤼ (top arc clockwise arrow minus)
  • Put CSS escape \293D directly in HTML text nodes
  • Rely on the symbol alone without accessible text in buttons
  • Use HTML entities in JS (use \u293D instead)

Key Takeaways

1

Four HTML references plus CSS all render ⤽

&#x293D; &#10557; &cularrp;
2

For CSS, use \293D in the content property

3

Unicode U+293D — Top Arc Anticlockwise Arrow With Plus

4

Prefer &cularrp; for readability—it’s the named HTML entity

5

Supplemental Arrows-B block (U+2900–U+297F) for directional symbols

❓ Frequently Asked Questions

Use &#x293D; (hex), &#10557; (decimal), &cularrp; (named), or \293D in CSS content. All four methods render ⤽ correctly.
U+293D (TOP ARC ANTICLOCKWISE ARROW WITH PLUS). Supplemental Arrows-B block (U+2900–U+297F). Hex 293D, decimal 10557. Indicates anticlockwise rotation with a plus modifier.
For undo actions, resets, cyclic operations, mathematical notation, UI controls, directional indicators, navigation interfaces, and any content representing counterclockwise rotation or reverse operations.
HTML references (&#10557;, &#x293D;, or &cularrp;) go in markup. The CSS escape \293D is used in stylesheets, typically on ::before or ::after. Both produce ⤽.
Yes. &cularrp; is the named HTML entity for U+293D. You can also use &#10557; (decimal) or &#x293D; (hex) and \293D in CSS.

Explore More HTML Entities!

Discover 1500+ HTML character references — arrows, symbols, punctuation, 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