HTML Entity for Heavy Lower Right Shaded White Right Arrow (➭)

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

What You'll Learn

How to display the Heavy Lower Right Shaded White Right Arrow (➭) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+27AD (HEAVY LOWER RIGHT SHADED WHITE RIGHT ARROWS) in the Dingbats block (U+2700–U+27BF). It is a right-pointing arrow with a lower-right shaded white style—ideal for navigation, “next” or “continue” cues, flow indicators, and directional UI where a distinct forward arrow is desired beyond ASCII -> or simple .

Render it with ➭, ➭, or CSS escape \27AD. There is no named HTML entity. Do not confuse ➭ with U+27A8 (➨, heavy concave pointed black right arrow) or U+2192 (→, standard rightwards arrow); each arrow code point has a different glyph.

⚡ Quick Reference — Shaded Right Arrow

Unicode U+27AD

Dingbats block

Hex Code ➭

Hexadecimal reference

HTML Code ➭

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+27AD
Hex code       ➭
HTML code      ➭
Named entity   (none)
CSS code       \27AD
Meaning        Shaded white right arrow
Related        U+2192 = rightwards arrow (→)
               U+27A8 = concave right arrow (➨)
1

Complete HTML Example

This example demonstrates the Heavy Lower Right Shaded White Right Arrow (➭) using hexadecimal code, decimal HTML code, and a CSS content escape on navigation links and a wizard step:

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

🌐 Browser Support

The Heavy Lower 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 Lower Right Shaded White Right Arrow (➭) in context, compared with other right arrows:

CTA link Learn more ➭
Continue Continue ➭
Large glyph
Comparison ➭   →   ➨
Numeric refs &#x27AD; &#10157; \27AD

🧠 How It Works

1

Hexadecimal Code

&#x27AD; uses the Unicode hexadecimal value 27AD to display the shaded arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+27AD is in the Dingbats block. Next: Heavy Multiplication X (✖).

Use Cases

The Heavy Lower Right Shaded White Right Arrow (➭) is commonly used in:

➭ Navigation

Link indicators, next or more cues in navigation, dropdowns, and menus.

➔ Continue

Next or continue in wizards, multi-step forms, and onboarding flows.

📊 Diagrams

Flow direction, process steps, and relationship arrows in diagrams.

👉 CTA

Learn more ➭ or continue ➭ on buttons and links.

🔨 CSS content

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

📝 Lists

Step indicators or list markers with forward directional emphasis.

💡 Best Practices

Do

  • Pair ➭ with link text or aria-label="Next" / Continue
  • Use content: " \27AD" on a::after for external-style CTAs
  • Declare UTF-8 with <meta charset="utf-8">
  • Keep one numeric style (hex or decimal) per project
  • Test glyph rendering in your font stack
  • Use semantic <a> or <button> for interactive forward actions

Don’t

  • Use ➭ alone on links without accessible names
  • Confuse U+27AD (➭) with U+27A8 (➨) or U+2192 (→)
  • Expect a named HTML entity for U+27AD
  • Use CSS \27AD in HTML text nodes
  • Rely on the arrow alone when direction or action must be explicit for all users

Key Takeaways

1

Two HTML numeric references plus CSS insert U+27AD

&#x27AD; &#10157;
2

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

3

Unicode U+27AD — shaded white right arrow (➭)

4

Distinct from standard rightwards U+2192 (→) and concave U+27A8 (➨)

❓ Frequently Asked Questions

Use &#x27AD; (hex), &#10157; (decimal), or \27AD in CSS content. There is no named entity. All three methods render the arrow (➭) correctly.
U+27AD (HEAVY LOWER RIGHT SHADED WHITE RIGHT ARROWS). Dingbats block. Hex 27AD, decimal 10157. The symbol (➭) is a right-pointing arrow with lower-right shaded white style, widely used for navigation and directional flow.
For navigation links and menus, next/continue or forward indicators, flowcharts and process diagrams, and any UI that needs a distinct right-pointing arrow with a shaded style.
HTML references (&#10157; or &#x27AD;) go in markup. The CSS escape \27AD 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+27AD uses numeric hex (&#x27AD;) or decimal (&#10157;) 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