HTML Entity for Heavy Upper Right Shaded White Right Arrow (➮)

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

What You'll Learn

How to display the Heavy Upper Right Shaded White Right Arrow (➮) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+27AE (HEAVY UPPER RIGHT-SHADED WHITE RIGHTWARDS ARROW) in the Dingbats block (U+2700–U+27BF). It is a heavy right-pointing arrow with a distinctive shaded upper-right and white style—ideal for navigation, next-step UI, flow diagrams, pagination, and forward directional cues beyond or Unicode .

Render it with ➮, ➮, or CSS escape \27AE. There is no named HTML entity. Do not confuse ➮ with U+279E (➞, triangle-headed right arrow) or U+2799 (➙, heavy right arrow); each code point has a different glyph.

⚡ Quick Reference — Shaded Right Arrow

Unicode U+27AE

Dingbats block

Hex Code ➮

Hexadecimal reference

HTML Code ➮

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+27AE
Hex code       ➮
HTML code      ➮
Named entity   (none)
CSS code       \27AE
Meaning        Heavy upper-right shaded right arrow
Related        U+279E = triangle headed (➞)
               U+2799 = heavy right (➙)
               U+2192 = rightwards (→)
1

Complete HTML Example

This example demonstrates the Heavy Upper Right Shaded White Right Arrow (➮) using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\27AE";
  }
 </style>
</head>
<body>
<p>Shaded Right Arrow using Hexadecimal: &#x27AE;</p>
<p>Shaded Right Arrow using HTML Code: &#10158;</p>
<p id="point">Shaded Right Arrow using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Heavy Upper Right Shaded White Right Arrow (➮) is widely supported in modern browsers when the font includes Dingbats arrow glyphs:

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

👀 Live Preview

Heavy Upper Right Shaded White Right Arrow (➮) in context, compared with other right-pointing arrows:

Next step Continue ➮
Pagination Page 1 ➮ Page 2
Large glyph
Comparison ➮   ➞   ➙
Numeric refs &#x27AE; &#10158; \27AE

🧠 How It Works

1

Hexadecimal Code

&#x27AE; uses the Unicode hexadecimal value 27AE to display the upper-right shaded right arrow. Always include the trailing semicolon so the reference is not parsed as &#x27; (apostrophe). The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\27AE is used in CSS stylesheets, particularly in content on ::after for next buttons, pagination, and forward navigation cues.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+27AE is in the Dingbats block. Next: Heavy Vertical Bar.

Use Cases

The Heavy Upper Right Shaded White Right Arrow (➮) is commonly used in:

➮ Navigation

Forward direction, next-step, and continue indicators in menus and wizards.

👈 UI controls

Buttons, links, and call-to-action elements that point right or forward.

📊 Flowcharts

Process flow and decision-tree connectors pointing to the next step.

📄 Pagination

Carousel, slideshow, and paginated list next controls.

🔨 CSS content

content: "\27AE" on ::after without extra HTML markup.

📱 App UI

Mobile list chevrons, drill-down rows, and forward gesture hints.

💡 Best Practices

Do

  • Pair ➮ with aria-label="Next" or visible “Continue” text on controls
  • Use content: "\27AE" via ::after on next/forward buttons
  • Wrap navigation in semantic <nav> and links in <a>
  • Declare UTF-8 with <meta charset="utf-8">
  • Keep one numeric style (hex or decimal) per project
  • Combine link text with the arrow for clarity and accessibility

Don’t

  • Use ➮ alone on buttons without accessible names
  • Confuse U+27AE (➮) with U+279E (➞) or U+2799 (➙)
  • Expect a named HTML entity for U+27AE
  • Use CSS \27AE in HTML text nodes
  • Rely on the arrow alone when the action must be explicit

Key Takeaways

1

Two HTML numeric references plus CSS insert U+27AE

&#x27AE; &#10158;
2

For CSS, use \27AE in the content property (often ::after)

3

Unicode U+27AE — heavy upper-right shaded right arrow (➮)

4

Distinct from triangle headed U+279E (➞) and heavy right U+2799 (➙)

❓ Frequently Asked Questions

Use &#x27AE; (hex), &#10158; (decimal), or \27AE in CSS content. There is no named entity. All three methods render the arrow (➮) correctly.
U+27AE (HEAVY UPPER RIGHT-SHADED WHITE RIGHTWARDS ARROW). Dingbats block. Hex 27AE, decimal 10158. The symbol (➮) is a heavy right-pointing arrow with a shaded upper-right style.
For directional indicators and navigation, UI next-step buttons and links, flowcharts and process diagrams, pagination or carousel controls, and any content that needs a clear right or forward symbol with a distinctive shaded upper-right style.
HTML references (&#10158; or &#x27AE;) go in markup. The CSS escape \27AE is used in stylesheets, typically on ::after for links and buttons. Both produce ➮.
Named entities cover common ASCII, Latin-1, and widely used symbols. U+27AE uses numeric hex (&#x27AE;) or decimal (&#10158;) codes, which is standard for Dingbats arrow symbols.

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