HTML Entity for Heavy Black Feathered Right Arrow (➸)

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

What You'll Learn

How to display the Heavy Black Feathered Right Arrow (➸) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+27B8 in the Dingbats block (Miscellaneous Symbols and Arrows, U+2700–U+27BF). It is a bold, feathered arrow pointing to the right—often used for “next,” “continue,” navigation, carousels, and step flows.

Render it with ➸, ➸, or CSS escape \27B8. There is no named HTML entity. Do not confuse ➸ with U+27B9 (➹, feathered north-east), U+27B7 (➷, feathered south-east), or U+2192 (→, simple rightwards arrow).

⚡ Quick Reference — Feathered Right Arrow

Unicode U+27B8

Dingbats / arrows

Hex Code ➸

Hexadecimal reference

HTML Code ➸

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+27B8
Hex code       ➸
HTML code      ➸
Named entity   (none)
CSS code       \27B8
Meaning        Feathered right arrow
Related        U+27B9 = feathered NE (➹)
1

Complete HTML Example

This example demonstrates the Heavy Black Feathered 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: "\27B8";
  }
 </style>
</head>
<body>
<p>Feathered Right Arrow using Hexadecimal: &#x27B8;</p>
<p>Feathered Right Arrow using HTML Code: &#10168;</p>
<p id="point">Feathered Right Arrow using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Heavy Black Feathered Right Arrow (➸) is widely supported in modern browsers when the font includes Dingbats or arrow glyphs:

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

👀 Live Preview

Heavy Black Feathered Right Arrow (➸) in context, compared with related arrow glyphs:

Next / continue Continue ➸
Read more Learn more ➸
Large glyph
U+27B8 vs U+27B9 ➸   ➹
Numeric refs &#x27B8; &#10168; \27B8

🧠 How It Works

1

Hexadecimal Code

&#x27B8; uses the Unicode hexadecimal value 27B8 to display the arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\27B8 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after for next buttons or carousel controls.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+27B8 is in the Dingbats block. Next: Heavy Black Feathered South East Arrow (➷).

Use Cases

The Heavy Black Feathered Right Arrow (➸) is commonly used in:

🧭 Navigation

Next or Continue buttons, breadcrumbs, and forward navigation cues.

📝 Wizards & steps

Multi-step forms, tutorials, and wizards with a next-step indicator.

🖼 Carousels

Next-slide or next-item controls in image carousels and sliders.

📖 Read more

Learn more or link indicators suggesting forward movement.

📊 Flowcharts

Process flows and diagram connectors showing rightward direction.

🎨 Design systems

Stylistic feathered right arrows in headers, footers, or brand guidelines.

💡 Best Practices

Do

  • Pair ➸ with text or aria-label (e.g. “Next”, “Continue”)
  • Use content: "\27B8" on ::after for forward link cues
  • Declare UTF-8 with <meta charset="utf-8">
  • Verify fonts render the feathered glyph in your stack
  • Keep one numeric style (hex or decimal) per project
  • Test appearance across browsers and devices

Don’t

  • Rely on ➸ alone for accessibility-critical actions
  • Confuse U+27B8 (➸) with U+27B9 (➹, north-east)
  • Expect a named HTML entity for U+27B8
  • Use CSS \27B8 in HTML text nodes
  • Assume every font renders the feathered tail identically

Key Takeaways

1

Two HTML numeric references plus CSS insert U+27B8

&#x27B8; &#10168;
2

For CSS, use \27B8 in the content property

3

Unicode U+27B8 — feathered right arrow (➸)

4

Related: U+27B9 (➹) points north-east

❓ Frequently Asked Questions

Use &#x27B8; (hex), &#10168; (decimal), or \27B8 in CSS content. There is no named entity. All three methods render the Heavy Black Feathered Right Arrow (➸) correctly.
U+27B8 in the Dingbats block (Miscellaneous Symbols and Arrows). Hex 27B8, decimal 10168. The symbol (➸) is a bold feathered arrow pointing to the right.
In navigation and menus (next, continue), step-by-step or wizard flows, carousels and sliders, read-more or link indicators, flowcharts and process diagrams, and any UI that needs a clear rightward or forward directional cue.
HTML references (&#10168; or &#x27B8;) go in markup. The CSS escape \27B8 is used in stylesheets, typically on ::before or ::after. Both produce ➸.
Named entities cover common ASCII, Latin-1, and widely used symbols. U+27B8 uses numeric hex (&#x27B8;) or decimal (&#10168;) codes, which is standard for arrow characters in specialized Unicode blocks.

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