HTML Entity for Top Arc Anticlockwise Arrow Plus (⤽)

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
U+293DSupplemental Arrows-B
⤽Hexadecimal reference
⤽Decimal reference
⤽Most readable option
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 (⤼)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\293D";
}
</style>
</head>
<body>
<p>Using Hexadecimal: ⤽</p>
<p>Using HTML Code: ⤽</p>
<p>Using Named Entity: ⤽</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Top Arc Anticlockwise Arrow Plus is widely supported in modern browsers when fonts include Supplemental Arrows-B glyphs:
👀 Live Preview
See the Top Arc Anticlockwise Arrow Plus (⤽) in UI context:
🧠 How It Works
Hexadecimal Code
⤽ uses the Unicode hexadecimal value 293D to display the Top Arc Anticlockwise Arrow Plus.
Decimal HTML Code
⤽ uses the decimal Unicode value 10557 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
\293D is used in CSS stylesheets in the content property of pseudo-elements like ::after.
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:
Reverse operations and undo buttons in editors.
Restore defaults and return-to-previous-state controls.
Counterclockwise rotation and circular process flows.
Directional and rotational indicators in formulas.
Interactive panels and navigation interface elements.
Wayfinding and counterclockwise direction indicators.
Diagrams and documentation for reverse operations.
💡 Best Practices
Do
- Use
⤽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
\293Ddirectly in HTML text nodes - Rely on the symbol alone without accessible text in buttons
- Use HTML entities in JS (use
\u293Dinstead)
Key Takeaways
Four HTML references plus CSS all render ⤽
⤽ ⤽ ⤽For CSS, use \293D in the content property
Unicode U+293D — Top Arc Anticlockwise Arrow With Plus
Prefer ⤽ for readability—it’s the named HTML entity
Supplemental Arrows-B block (U+2900–U+297F) for directional symbols
❓ Frequently Asked Questions
⤽ (hex), ⤽ (decimal), ⤽ (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.⤽, ⤽, or ⤽) go in markup. The CSS escape \293D is used in stylesheets, typically on ::before or ::after. Both produce ⤽.⤽ is the named HTML entity for U+293D. You can also use ⤽ (decimal) or ⤽ (hex) and \293D in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, punctuation, and more.
8 people found this page helpful
