HTML Entity for Notched Lower Right Shadowed White Right Arrow (➯)

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

What You'll Learn

How to display the Notched Lower Right Shadowed White Right Arrow (➯) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+27AF (NOTCHED LOWER RIGHT SHADOWED WHITE RIGHTWARDS ARROW) in the Dingbats block (U+2700–U+27BF)—a distinctive right-pointing arrow with a notched lower-right, shadowed style for navigation and UI design.

Render it with ➯, ➯, or CSS escape \27AF. There is no named HTML entity. Compare with Notched Upper Right Shadowed White Right Arrow (➱, U+27B1) or the simple right arrow → (→, U+2192).

⚡ Quick Reference — Notched Lower Right Shadowed White Right Arrow

Unicode U+27AF

Dingbats block

Hex Code ➯

Hexadecimal reference

HTML Code ➯

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+27AF
Hex code       ➯
HTML code      ➯
Named entity   (none)
CSS code       \27AF
Meaning        Notched lower right shadowed white right arrow
Related        U+27B1 = notched upper right (➱)
               U+27AC = front tilted shadowed (➬)
               U+2192 = right arrow (→)
Block          Dingbats (U+2700–U+27BF)
1

Complete HTML Example

This example demonstrates ➯ using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\27AF";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x27AF;</p>
<p>Symbol (decimal): &#10159;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+27AF is supported in modern browsers when rendered with a font that includes Dingbats:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See ➯ in navigation and UI contexts:

Navigation Next ➯ Continue
Large glyph
Link CTA Read more ➯
Arrow family ➯ lower notch   ➱ upper notch   → simple
Numeric refs &#x27AF; &#10159; \27AF

🧠 How It Works

1

Hexadecimal Code

&#x27AF; uses the Unicode hexadecimal value 27AF to display the notched shadowed right arrow.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\27AF is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+27AF in Dingbats (U+2700–U+27BF). No named HTML entity—use numeric codes in markup.

Use Cases

The Notched Lower Right Shadowed White Right Arrow (➯) is commonly used in:

🧭 Navigation

Breadcrumbs, dropdown indicators, and forward/next menu items.

📱 UI & buttons

Call-to-action buttons, Continue links, and list item indicators.

📄 Presentations

Slides and flowcharts that show direction or sequence to the right.

📋 Lists & steps

Numbered or bullet lists where a distinctive arrow improves readability.

🎨 Design

Logos, infographics, and branding with a notched shadowed arrow style.

🔗 Links & CTA

Read-more arrows, external link indicators, and clickable elements.

💡 Best Practices

Do

  • Use &#x27AF; or &#10159; consistently in markup
  • Pair the arrow with text (e.g. “Next”) or use aria-label for screen readers
  • Use \27AF in CSS ::after for next links or list bullets
  • Ensure sufficient contrast and size for touch targets and readability
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Expect a named entity—none exists for U+27AF
  • Confuse ➯ (notched shadowed arrow) with → (simple right arrow)
  • Use padded Unicode notation like U+027AF—the correct value is U+27AF
  • Put CSS escape \27AF in HTML text nodes
  • Use \027AF in CSS—the correct escape is \27AF

Key Takeaways

1

Two HTML numeric references render ➯

&#x27AF; &#10159;
2

For CSS stylesheets, use the escape in the content property

\27AF
3

Unicode U+27AF — NOTCHED LOWER RIGHT SHADOWED WHITE RIGHTWARDS ARROW

4

Dingbats block (U+2700–U+27BF)

5

No named entity—use numeric references or UTF-8 in source files

❓ Frequently Asked Questions

Use &#x27AF; (hex), &#10159; (decimal), or \27AF in CSS content. There is no named entity. All produce ➯.
U+27AF (NOTCHED LOWER RIGHT SHADOWED WHITE RIGHTWARDS ARROW). Dingbats block (U+2700–U+27BF). Hex 27AF, decimal 10159.
In UI design, navigation elements, buttons, lists, and any interface that needs a distinctive notched, shadowed right-pointing arrow for forward or next actions.
HTML references (&#10159; or &#x27AF;) go directly in markup. The CSS escape \27AF is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
The HTML named character set includes only a subset of symbols. Use &#10159; (decimal) or &#x27AF; (hexadecimal)—both render ➯ in modern browsers.

Explore More HTML Entities!

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