HTML Entity for Notched Upper Right Shadowed White Right Arrow (➱)

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

What You'll Learn

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

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

⚡ Quick Reference — Notched Upper Right Shadowed White Right Arrow

Unicode U+27B1

Dingbats block

Hex Code ➱

Hexadecimal reference

HTML Code ➱

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+27B1
Hex code       ➱
HTML code      ➱
Named entity   (none)
CSS code       \27B1
Meaning        Notched Upper Right Shadowed White Right Arrow
Related        U+27AF = notched lower 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: "\27B1";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x27B1;</p>
<p>Symbol (decimal): &#10161;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+27B1 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 &#x27B1; &#10161; \27B1

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\27B1 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+27B1 in Dingbats (U+2700–U+27BF). No named HTML entity—use numeric codes in markup.

Use Cases

The Notched Upper 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 &#x27B1; or &#10161; consistently in markup
  • Pair the arrow with text (e.g. “Next”) or use aria-label for screen readers
  • Use \27B1 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+27B1
  • Confuse ➱ (notched shadowed arrow) with → (simple right arrow)
  • Use padded Unicode notation like U+027B1—the correct value is U+27B1
  • Put CSS escape \27B1 in HTML text nodes
  • Use \027B1 in CSS—the correct escape is \27B1

Key Takeaways

1

Two HTML numeric references render ➱

&#x27B1; &#10161;
2

For CSS stylesheets, use the escape in the content property

\27B1
3

Unicode U+27B1 — NOTCHED UPPER 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 &#x27B1; (hex), &#10161; (decimal), or \27B1 in CSS content. There is no named entity. All produce ➱.
U+27B1 (NOTCHED UPPER RIGHT SHADOWED WHITE RIGHTWARDS ARROW). Dingbats block (U+2700–U+27BF). Hex 27B1, decimal 10161.
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 (&#10161; or &#x27B1;) go directly in markup. The CSS escape \27B1 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 &#10161; (decimal) or &#x27B1; (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