HTML Entity for Top Arc Clockwise Arrow Minus (⤼)

What You'll Learn
How to display the Top Arc Clockwise Arrow Minus (⤼) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+293C (TOP ARC CLOCKWISE ARROW WITH MINUS) in the Supplemental Arrows-B block (U+2900–U+297F)—a curved clockwise arrow with a minus sign, used in math, logic, and technical diagrams.
Render it with ⤼ (named), ⤼, ⤼, or CSS escape \293C. Do not confuse ⤼ with U+293D (⤽, top arc anticlockwise arrow plus / ⤽) or U+2938 (⤸, right side arc clockwise arrow / ⤸).
⚡ Quick Reference — Top Arc Clockwise Arrow Minus
U+293CSupplemental Arrows-B
⤼Hexadecimal reference
⤼Decimal reference
⤼Most readable option
Name Value
──────────── ──────────
Unicode U+293C
Hex code ⤼
HTML code ⤼
Named entity ⤼
CSS code \293C
Block Supplemental Arrows-B (U+2900–U+297F)
Official name TOP ARC CLOCKWISE ARROW WITH MINUS
Related U+293D = top arc anticlockwise arrow plus (⤽), U+2938 = right side arc clockwise (⤸)Complete HTML Example
This example demonstrates the Top Arc Clockwise Arrow Minus (⤼) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\293C";
}
</style>
</head>
<body>
<p>Using Named Entity: ⤼</p>
<p>Using Hexadecimal: ⤼</p>
<p>Using HTML Code: ⤼</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Top Arc Clockwise Arrow Minus is widely supported in modern browsers when fonts include Supplemental Arrows-B glyphs:
👀 Live Preview
See the Top Arc Clockwise Arrow Minus (⤼) in notation context:
🧠 How It Works
Hexadecimal Code
⤼ uses the Unicode hexadecimal value 293C to display the Top Arc Clockwise Arrow Minus.
Decimal HTML Code
⤼ uses the decimal Unicode value 10556 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
\293C is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⤼. Unicode U+293C in Supplemental Arrows-B. Previous: Top Arc Anticlockwise Arrow Plus. Next: Trade Mark Sign.
Use Cases
The Top Arc Clockwise Arrow Minus (⤼) commonly appears in:
Equations and academic content with specialized arrow notation.
Formal logic and mathematical logic expressions.
Flowcharts and engineering documentation with arrow symbols.
Proofs and scholarly publications requiring arrow glyphs.
Research papers and educational mathematics material.
Technical specifications and professional documentation.
Mathematics tutorials and instructional notation guides.
💡 Best Practices
Do
- Use
⤼for readable source markup - Choose fonts with Supplemental Arrows-B support (e.g. Cambria Math)
- Add surrounding text or
aria-labelfor accessibility - Keep one entity style per project for consistency
- Test rendering across browsers and font stacks
Don’t
- Confuse ⤼ (top arc clockwise minus) with ⤽ (anticlockwise plus)
- Confuse ⤼ with ⤸ (right side arc clockwise arrow)
- Put CSS escape
\293Cdirectly in HTML text nodes - Assume every arrow font renders U+293C identically
- Use HTML entities in JS (use
\u293Cinstead)
Key Takeaways
Four HTML references plus CSS all render ⤼
⤼ ⤼ ⤼For CSS, use \293C in the content property
Unicode U+293C — Top Arc Clockwise Arrow With Minus
Prefer ⤼ for readability—it’s the named HTML entity
Supplemental Arrows-B block (U+2900–U+297F) for directional math symbols
❓ Frequently Asked Questions
⤼ (hex), ⤼ (decimal), ⤼ (named), or \293C in CSS content. All four methods render ⤼ correctly.U+293C (TOP ARC CLOCKWISE ARROW WITH MINUS). Supplemental Arrows-B block (U+2900–U+297F). Hex 293C, decimal 10556. Used in math, logic, and technical diagrams.⤼ is the most readable named entity. Numeric codes (⤼ or ⤼) work when you prefer explicit encoding. All produce ⤼; the named entity is generally preferred in source markup.⤼ is part of the HTML standard and is widely supported across modern browsers. It is the preferred method for displaying ⤼ in HTML documents.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, punctuation, and more.
8 people found this page helpful
