HTML Entity for White Feathered Right Arrow (➳)

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

What You'll Learn

How to display White Feathered Right Arrow (➳) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+27B3 (WHITE FEATHERED RIGHTWARDS ARROW) in the Dingbats block (U+2700–U+27BF)—an outline rightward arrow with a decorative feathered tail.

Render it with ➳, ➳, or CSS escape \27B3. There is no named HTML entity. It suits navigation, next-step UI, and flow diagrams. Do not confuse ➳ with ➲ (black feathered right) or simple arrow → (U+2192).

⚡ Quick Reference — White Feathered Right Arrow

Unicode U+27B3

Dingbats

Hex Code ➳

Hexadecimal reference

HTML Code ➳

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+27B3
Hex code       ➳
HTML code      ➳
Named entity   (none)
CSS code       \27B3
Meaning        White feathered rightwards arrow
Related        U+27B2 = ➲ (black feathered rightwards arrow)
               U+27BC = ➼ (wedge-tailed right arrow)
               U+2192 = → (rightwards arrow, →)
Block          Dingbats (U+2700–U+27BF)
1

Complete HTML Example

A simple example showing White Feathered Right Arrow (➳) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #arrow:after{
   content: "\27B3";
  }
 </style>
</head>
<body>
<p>White Feathered Right Arrow (hex): &#x27B3;</p>
<p>White Feathered Right Arrow (decimal): &#10163;</p>
<p id="arrow">White Feathered Right Arrow (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

U+27B3 is supported in modern browsers when the font includes Dingbats glyphs:

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

👀 Live Preview

See White Feathered Right Arrow (➳) in context:

Large glyph
NavigationContinue ➳
Feathered pair➲ ➳
Not the same as→ (U+2192, &rarr;)  |  ➼ (U+27BC, wedge-tailed)
Numeric refs&#x27B3; &#10163; \27B3

🧠 How It Works

1

Hexadecimal Code

&#x27B3; uses the Unicode hexadecimal value 27B3 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#10163; uses the decimal Unicode value 10163 to display the same character. A common method for symbol characters in HTML.

HTML markup
3

CSS Entity

\27B3 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 the glyph: . Unicode U+27B3 is the white feathered right arrow in Dingbats. Not the same as ➲ (black feathered) or → (&rarr;).

Use Cases

White Feathered Right Arrow (➳) is commonly used in:

➡ Navigation UI

Next, continue, and forward buttons with a decorative arrow.

🗺 Flow diagrams

Process flows, workflows, and sequential step indicators.

📚 Documentation

Tutorials and guides pointing readers to the next section.

🎨 Decorative design

Logos, banners, and branded directional accents.

🖥 Breadcrumbs

Lightweight separators between breadcrumb trail items.

💬 Call-to-action

Highlight links and prompts that move users forward.

♿ Accessibility

Pair ➳ with visible text or aria-label; do not rely on the glyph alone.

💡 Best Practices

Do

  • Use ➳ for a decorative outline right arrow; use ➲ for the filled black feathered variant
  • Pair arrow glyphs with accessible text like “Next” or aria-label
  • Pick one numeric style (hex or decimal) per project for consistency
  • Use fonts that support Dingbats characters
  • Test rendering across browsers and devices

Don’t

  • Confuse ➳ (white feathered) with ➲ (black feathered) or → (&rarr;)
  • Use the arrow glyph as the only navigation cue for critical actions
  • Mix entity styles randomly in one file
  • Use CSS escape \27B3 inside HTML markup
  • Expect a named HTML entity—none exists for ➳

Key Takeaways

1

Type ➳ directly, or use hex/decimal references

&#x27B3; &#10163;
2

For CSS stylesheets, use the escape in the content property

\27B3
3

Unicode U+27B3 — WHITE FEATHERED RIGHTWARDS ARROW (Dingbats)

4

U+27B2/U+27B3 are black/white feathered right arrow pairs in Dingbats

❓ Frequently Asked Questions

Use &#x27B3; (hex), &#10163; (decimal), or \27B3 in CSS content. There is no named HTML entity. In UTF-8 you can also type ➳ directly.
U+27B3 (WHITE FEATHERED RIGHTWARDS ARROW). Dingbats block U+2700–U+27BF. Hex 27B3, decimal 10163.
For navigation icons, next/continue buttons, directional UI, flow indicators, breadcrumbs, and decorative rightward emphasis.
HTML entities (&#10163; or &#x27B3;) go directly in markup. The CSS escape \27B3 is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.
Named HTML entities are reserved for commonly used ASCII, Latin-1, and widely recognized symbols. Dingbats like ➳ use numeric codes. Use &#10163; or &#x27B3; in HTML, or \27B3 in CSS.

Explore More HTML Entities!

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