HTML Entity for White Feathered Right Arrow (➳)

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
U+27B3Dingbats
➳Hexadecimal reference
➳Decimal reference
—Use numeric codes only
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)Complete HTML Example
A simple example showing White Feathered Right Arrow (➳) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#arrow:after{
content: "\27B3";
}
</style>
</head>
<body>
<p>White Feathered Right Arrow (hex): ➳</p>
<p>White Feathered Right Arrow (decimal): ➳</p>
<p id="arrow">White Feathered Right Arrow (CSS): </p>
</body>
</html>🌐 Browser Support
U+27B3 is supported in modern browsers when the font includes Dingbats glyphs:
👀 Live Preview
See White Feathered Right Arrow (➳) in context:
→) | ➼ (U+27BC, wedge-tailed)🧠 How It Works
Hexadecimal Code
➳ uses the Unicode hexadecimal value 27B3 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
➳ uses the decimal Unicode value 10163 to display the same character. A common method for symbol characters in HTML.
CSS Entity
\27B3 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
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 → (→).
Use Cases
White Feathered Right Arrow (➳) is commonly used in:
Next, continue, and forward buttons with a decorative arrow.
Process flows, workflows, and sequential step indicators.
Tutorials and guides pointing readers to the next section.
Logos, banners, and branded directional accents.
Lightweight separators between breadcrumb trail items.
Highlight links and prompts that move users forward.
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 → (
→) - Use the arrow glyph as the only navigation cue for critical actions
- Mix entity styles randomly in one file
- Use CSS escape
\27B3inside HTML markup - Expect a named HTML entity—none exists for ➳
Key Takeaways
Type ➳ directly, or use hex/decimal references
➳ ➳For CSS stylesheets, use the escape in the content property
\27B3Unicode U+27B3 — WHITE FEATHERED RIGHTWARDS ARROW (Dingbats)
U+27B2/U+27B3 are black/white feathered right arrow pairs in Dingbats
Previous: White Down Pointing Index (☟) Next: White Flag
❓ Frequently Asked Questions
➳ (hex), ➳ (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.➳ or ➳) 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.➳ or ➳ in HTML, or \27B3 in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — symbols, punctuation, and more.
8 people found this page helpful
