HTML Entity for Back Tilted Shadowed White Right Arrow (➫)

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

What You'll Learn

How to display the back tilted shadowed white right arrow (➫) in HTML using numeric character references and CSS. This dingbat belongs to the Dingbats Unicode block (U+2700–U+27BF) and is useful for navigation, menus, buttons, and directional UI without bitmap icons.

There is no named HTML entity for this character. You can render it with a hexadecimal reference (➫), a decimal reference (➫), or a CSS escape (\27AB) in the content property.

⚡ Quick Reference — Back Tilted Shadowed White Right Arrow

Unicode U+27AB

Dingbats block

Hex Code ➫

Hexadecimal reference

HTML Code ➫

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+27AB
Hex code       ➫
HTML code      ➫
Named entity   —
CSS code       \27AB
1

Complete HTML Example

This example demonstrates the 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: "\27AB";
  }
 </style>
</head>
<body>
<p>Back Tilted Shadowed White Right Arrow using Hexa Decimal: &#x27AB;</p>
<p>Back Tilted Shadowed White Right Arrow using HTML Code: &#10155;</p>
<p id="point">Back Tilted Shadowed White Right Arrow using CSS Entity: </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

This dingbat arrow is supported in all modern browsers when you use numeric references or CSS escapes:

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

👀 Live Preview

See the arrow rendered live in different contexts:

Inline text Next section ➫ continues below.
Large glyph
Navigation cue Read more ➫
Monospace step_1 ➫ step_2
List marker (text) Item A ➫ sub-item ➫ sub-item

🧠 How It Works

1

Hexadecimal Code

&#x27AB; uses the Unicode hexadecimal value 27AB. The x prefix marks a hexadecimal numeric character reference.

HTML markup
2

Decimal HTML Code

&#10155; is the decimal form (code point 10155). It is equivalent to &#x27AB;.

HTML markup
3

CSS Entity

\27AB is the CSS escape for U+27AB, used in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

Hex, decimal, and CSS escapes all produce . There is no named HTML entity for this dingbat; use numeric references in markup and \27AB only in CSS.

Use Cases

The back tilted shadowed white right arrow (➫) commonly appears in:

📄 Navigation & menus

Breadcrumbs, “next,” and forward links where a dingbat reads better than a tiny image.

🎨 UI & dashboards

Buttons, list rows, and cards that need a consistent right-pointing cue.

📋 Step-by-step flows

Wizards, tutorials, and onboarding where each step points to the next.

🔗 CTAs & external links

“Read more,” “Continue,” or outbound link rows with a forward arrow.

📱 Responsive layouts

Mobile menus and accordions where a single character scales cleanly.

📖 Docs & slides

Flow diagrams and bullet hierarchies in HTML exports.

♿ Accessibility

Pair the glyph with visible text or aria-label so screen readers get intent, not only “right arrow.”

💡 Best Practices

Do

  • Stick to one numeric style (hex or decimal) per project
  • Verify the font stack includes a face with Dingbats coverage
  • Use \27AB only inside CSS, not raw in HTML text
  • Add aria-label or visible labels for icon-only controls
  • Prefer semantic links with text plus the arrow as decoration

Don’t

  • Rely on the arrow alone for critical navigation meaning
  • Assume every system font draws U+27AB identically
  • Paste CSS escapes into HTML body content
  • Forget to test RTL layouts if you mix arrows and text
  • Use bitmap arrows when a single character meets the design

Key Takeaways

1

Two numeric references render the same glyph

&#x27AB; &#10155;
2

In CSS content, use the escape

\27AB
3

Unicode U+27AB is a Dingbat; there is no standard named entity

4

Combine the symbol with link text or labels for accessible navigation

5

Pick fonts known to cover dingbats for consistent UI arrows

❓ Frequently Asked Questions

Use &#x27AB; (hex), &#10155; (decimal), or \27AB in CSS content. There is no named entity; all valid methods render ➫.
U+27AB (hex 27AB, decimal 10155). It lives in the Dingbats block and is used for navigation and directional UI.
Use it for menus, “next” rows, CTAs, step lists, and any lightweight UI that needs a right-pointing dingbat without loading an image.
Numeric references belong in HTML. The \27AB escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes directly into HTML text nodes.
No. Use &#x27AB;, &#10155;, or \27AB in CSS depending on whether you are authoring markup or styles.

Explore More HTML Entities!

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