HTML Entity for Top Arc Clockwise Arrow Minus (⤼)

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

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

Unicode U+293C

Supplemental Arrows-B

Hex Code ⤼

Hexadecimal reference

HTML Code ⤼

Decimal reference

Named Entity ⤼

Most readable option

Reference Table
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 (⤸)
1

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:

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

🌐 Browser Support

The Top Arc Clockwise Arrow Minus 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 Clockwise Arrow Minus (⤼) in notation context:

Math / logic f(x) ⤼ g(x) in a diagram
Large glyph
Compare ⤽ plus  |  ⤼ minus
Numeric refs &curarrm; &#x293C; &#10556; \293C

🧠 How It Works

1

Hexadecimal Code

&#x293C; uses the Unicode hexadecimal value 293C to display the Top Arc Clockwise Arrow Minus.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

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

HTML markup
4

CSS Entity

\293C 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+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:

🔢 Math

Equations and academic content with specialized arrow notation.

💬 Logic

Formal logic and mathematical logic expressions.

📈 Technical Diagrams

Flowcharts and engineering documentation with arrow symbols.

📄 Mathematical Notation

Proofs and scholarly publications requiring arrow glyphs.

🎓 Academic Content

Research papers and educational mathematics material.

⚙️ Engineering

Technical specifications and professional documentation.

📚 Education

Mathematics tutorials and instructional notation guides.

💡 Best Practices

Do

  • Use &curarrm; for readable source markup
  • Choose fonts with Supplemental Arrows-B support (e.g. Cambria Math)
  • Add surrounding text or aria-label for 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 \293C directly in HTML text nodes
  • Assume every arrow font renders U+293C identically
  • Use HTML entities in JS (use \u293C instead)

Key Takeaways

1

Four HTML references plus CSS all render ⤼

&#x293C; &#10556; &curarrm;
2

For CSS, use \293C in the content property

3

Unicode U+293C — Top Arc Clockwise Arrow With Minus

4

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

5

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

❓ Frequently Asked Questions

Use &#x293C; (hex), &#10556; (decimal), &curarrm; (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.
In math, logic, technical diagrams, mathematical notation, academic content, and any material requiring specialized arrow symbols for mathematical or logical expressions.
&curarrm; is the most readable named entity. Numeric codes (&#10556; or &#x293C;) work when you prefer explicit encoding. All produce ⤼; the named entity is generally preferred in source markup.
Yes. &curarrm; 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.

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