HTML Entity for Left Shaded White Right Arrow (➪)

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

What You'll Learn

How to display the Left Shaded White Right Arrow (➪) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+27AA (LEFT SHADED WHITE RIGHTWARDS ARROW) in the Dingbats block (U+2700–U+27BF)—a directional arrow with a shaded white right-arrow style, often used in user interfaces, navigation, and icon design.

Render it with ➪, ➪, or CSS \27AA. There is no named HTML entity. Do not confuse ➪ with U+2192 (→, simple rightwards arrow / →) or U+27A9 (➩, rightwards dashed arrow).

⚡ Quick Reference — Left Shaded White Right Arrow

Unicode U+27AA

Dingbats block

Hex Code ➪

Hexadecimal reference

HTML Code ➪

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+27AA
Hex code       ➪
HTML code      ➪
Named entity   (none)
CSS code       \27AA
Meaning        Left shaded white rightwards arrow
Related        U+2192 = rightwards arrow (→)
               U+27A9 = rightwards dashed arrow (➩)
1

Complete HTML Example

A simple example showing the Left Shaded White Right Arrow (➪) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

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

🌐 Browser Support

The Left Shaded White Right Arrow (➪) is universally supported in all modern browsers when the font includes Dingbats block glyphs:

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

👀 Live Preview

See the Left Shaded White Right Arrow (➪) rendered live in different contexts:

Inline text Continue ➪ to the next section.
Large glyph
Navigation Next page ➪
Button label Forward ➪
Arrow comparison → ➩ ➪
Numeric refs &#x27AA; &#10154; \27AA

🧠 How It Works

1

Hexadecimal Code

&#x27AA; uses the Unicode hexadecimal value 27AA for the left shaded white rightwards arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\27AA is used in CSS stylesheets in the content property of pseudo-elements like ::after.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+27AA is in the Dingbats block. There is no named HTML entity—use numeric codes. Previous: Left Semidirect Product.

Use Cases

The Left Shaded White Right Arrow (➪) is commonly used in:

🚀 Navigation & UI

Use as directional buttons, “next” or “forward” indicators, or menu arrows.

🎨 Icon Sets

Include in icon libraries or design systems for consistent arrow styling.

📊 Flowcharts

Show direction or flow between steps with a distinct shaded arrow style.

📚 Presentations

Indicate “go to next” or directional cues in web-based slides.

📄 Documentation

Point to next steps or related content with a clear arrow.

💻 Buttons & Links

Decorate call-to-action or “continue” buttons with the shaded arrow.

💡 Best Practices

Do

  • Use &#x27AA; or &#10154; for readable numeric references
  • Add aria-label or surrounding text for accessibility (e.g. “next”)
  • Verify your font supports the Dingbats block (U+27AA)
  • Keep one entity style per project for consistency
  • Pair the symbol with text labels when used for navigation

Don’t

  • Assume a named HTML entity exists—there is none for U+27AA
  • Use CSS \27AA inside HTML text nodes
  • Confuse ➪ with → (simple rightwards arrow)
  • Mix entity styles randomly in one file
  • Rely on the symbol alone without context for screen reader users

Key Takeaways

1

Two HTML references plus CSS all render ➪

&#x27AA; &#10154;
2

For CSS, use \27AA in the content property

3

Unicode U+27AA — LEFT SHADED WHITE RIGHTWARDS ARROW

4

No named HTML entity—use hex or decimal numeric codes

❓ Frequently Asked Questions

Use &#x27AA; (hex), &#10154; (decimal), or \27AA in CSS content. All three methods render ➪ correctly. There is no named HTML entity.
U+27AA (LEFT SHADED WHITE RIGHTWARDS ARROW). Dingbats block (U+2700–U+27BF). Hex 27AA, decimal 10154.
In user interfaces, navigation elements, icon sets, and directional indicators where a distinct shaded-arrow style is desired (e.g. buttons, menus, or flow diagrams).
HTML references (&#10154; or &#x27AA;) go in markup. The CSS escape \27AA is used in stylesheets, typically on ::before or ::after. Both produce ➪.
No. There is no named HTML entity for U+27AA. Use &#10154; (decimal), &#x27AA; (hex), or \27AA in CSS.

Explore More HTML Entities!

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