HTML Entity for Heavy Black Curved Up Right Arrow (➦)

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

What You'll Learn

How to display the Heavy Black Curved Up Right Arrow (➦) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+27A6 in the Dingbats block (Miscellaneous Symbols and Arrows, U+2700–U+27BF). It is a bold, curved arrow pointing up and to the right—often used for collapse/expand states, back-to-top links, external-link indicators, and “open” or “expand” cues.

Render it with ➦, ➦, or CSS escape \27A6. There is no named HTML entity. Do not confuse ➦ with U+27A5 (➥, curved down right) or U+2197 (↗, north east arrow).

⚡ Quick Reference — Curved Up Right Arrow

Unicode U+27A6

Dingbats / arrows

Hex Code ➦

Hexadecimal reference

HTML Code ➦

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+27A6
Hex code       ➦
HTML code      ➦
Named entity   (none)
CSS code       \27A6
Meaning        Heavy curved up-right arrow
Related        U+27A5 = curved down-right (➥)
1

Complete HTML Example

This example demonstrates the Heavy Black Curved Up Right Arrow (➦) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\27A6";
  }
 </style>
</head>
<body>
<p>Curved Up Right Arrow using Hexadecimal: &#x27A6;</p>
<p>Curved Up Right Arrow using HTML Code: &#10150;</p>
<p id="point">Curved Up Right Arrow using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Heavy Black Curved Up Right Arrow (➦) is widely supported in modern browsers when the font includes Dingbats or arrow glyphs:

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

👀 Live Preview

Heavy Black Curved Up Right Arrow (➦) in context, compared with the curved down-right variant (➥):

External link Docs ➦
Back to top Top ➦
Large glyph
U+27A6 vs U+27A5 ➦   ➥
Numeric refs &#x27A6; &#10150; \27A6

🧠 How It Works

1

Hexadecimal Code

&#x27A6; uses the Unicode hexadecimal value 27A6 to display the arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\27A6 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after for external links or collapse icons.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+27A6 is in the Dingbats block. Next: Heavy Black Feathered North East Arrow (➹).

Use Cases

The Heavy Black Curved Up Right Arrow (➦) is commonly used in:

📂 Collapse / expand

Accordion or expandable sections when collapsed (up-right suggests open or expand).

⬆ Back to top

Scroll-up and back-to-top buttons with a curved upward cue.

🔗 External links

Links that open in a new tab or window (up-right as open out).

🧭 Navigation

Menu icons, breadcrumbs, or level-up navigation with upward direction.

📱 Mobile UI

Collapse chevrons, open states, and drill-up or parent-level navigation.

🎨 Design systems

Decorative up-right arrows in headers, footers, or style guides.

💡 Best Practices

Do

  • Pair ➦ with text or aria-label (e.g. “Expand”, “Opens in new window”)
  • Use content: "\27A6" on ::after for external link indicators
  • Declare UTF-8 with <meta charset="utf-8">
  • Distinguish from U+27A5 (➥) when choosing down vs up-right
  • Keep one numeric style (hex or decimal) per project
  • Test glyph appearance across browsers and devices

Don’t

  • Rely on ➦ alone for accessibility-critical direction
  • Confuse U+27A6 (➦) with U+27A5 (➥, down-right)
  • Expect a named HTML entity for U+27A6
  • Use CSS \27A6 in HTML text nodes
  • Use where direction is ambiguous without supporting text

Key Takeaways

1

Two HTML numeric references plus CSS insert U+27A6

&#x27A6; &#10150;
2

For CSS, use \27A6 in the content property

3

Unicode U+27A6 — heavy curved up-right arrow (➦)

4

Related: U+27A5 (➥) points down and right

❓ Frequently Asked Questions

Use &#x27A6; (hex), &#10150; (decimal), or \27A6 in CSS content. There is no named entity. All three methods render the Heavy Black Curved Up Right Arrow (➦) correctly.
U+27A6 in the Dingbats block (Miscellaneous Symbols and Arrows). Hex 27A6, decimal 10150. The symbol (➦) is a bold curved arrow pointing up and to the right.
For collapse/expand up states, back-to-top or scroll-up cues, external link or open-in-new indicators, navigation and menu icons, and any design that needs an upward or open directional indicator.
HTML references (&#10150; or &#x27A6;) go in markup. The CSS escape \27A6 is used in stylesheets, typically on ::before or ::after. Both produce ➦.
Named entities cover common ASCII, Latin-1, and widely used symbols. U+27A6 uses numeric hex (&#x27A6;) or decimal (&#10150;) codes, which is standard for arrow characters in specialized Unicode blocks.

Explore More HTML Entities!

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