HTML Entity for Black Right Arrowhead (➤)

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

What You'll Learn

How to display Black Right Arrowhead (➤) in HTML and CSS. This character is U+27A4 in the Dingbats block (U+2700–U+27BF), approved in Unicode 1.1 (1993). Its Unicode name is BLACK RIGHTWARDS ARROWHEAD—a compact directional pointer, often used instead of the full Black Right Arrow (➡).

There is no named HTML entity for U+27A4. Use ➤ or ➤ in markup, or \27A4 in stylesheet content. The symbol suits navigation symbols, UI design, and interactive elements. Pair arrowhead glyphs with visible text or aria-label (for example “Next” or “Expand”).

⚡ Quick Reference — Black Right Arrowhead

Unicode U+27A4

Dingbats (U+2700–U+27BF)

Hex Code ➤

Hexadecimal reference

HTML Code ➤

Decimal reference

Named Entity

None (use numeric refs)

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

Complete HTML Example

This example shows U+27A4 using hexadecimal and decimal character references, plus a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\27A4";
  }
 </style>
</head>
<body>
<p>Black Right Arrowhead using Hexa Decimal: &#x27A4;</p>
<p>Black Right Arrowhead using HTML Code: &#10148;</p>
<p id="point">Black Right Arrowhead using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+27A4 is widely supported in modern browsers; hand glyph artwork varies by typeface:

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

👀 Live Preview

See the glyph at different sizes and beside the full right arrow (font-dependent):

Large glyph
Navigation ⬅ Back  |  Next ➤
Arrowhead vs arrow (U+27A4 & U+27A1) ➤ ➡
Caption U+27A4 is BLACK RIGHTWARDS ARROWHEAD; U+27A1 is BLACK RIGHTWARDS ARROW in Dingbats.
Monospace refs &#x27A4; &#10148; \27A4

🧠 How It Works

1

Hexadecimal Code

&#x27A4; references code point U+27A4 using hex digits 27A4 after the #x prefix.

HTML markup
2

Decimal HTML Code

&#10148; is the decimal equivalent (10148) for the same Black Right Arrowhead character.

HTML markup
3

CSS Entity

\27A4 is the CSS escape for U+27A4, 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 U+27A4.

Use Cases

The Black Right Arrowhead (➤) is commonly used for:

🧭 Navigation symbols

Next, forward, continue, and compact directional navigation markers.

💻 UI design

Buttons, menus, expandable sections, and interactive pointers.

➔ Directional pointers

Flow diagrams, process steps, and sequential indicators.

📋 Bullet-style markers

Compact list markers and emphasis indicators where space is limited.

📱 Mobile & app UI

Forward controls, swipe hints, and touch-friendly navigation.

🎨 Web design

Call-to-action accents, decorative pointers, and visual hierarchy.

♿ Accessibility

Pair ➤ with text or aria-label (e.g. “Next” or “Expand”) for screen reader users.

💡 Best Practices

Do

  • Use hex or decimal consistently—there is no named entity for U+27A4
  • Use arrowhead (➤) instead of full arrow (➡) when space is limited
  • Pair ➤ with ⬅ or left arrowhead symbols for back/forward navigation
  • Choose fonts that support the Dingbats block (U+2700–U+27BF)
  • Use \27A4 only inside CSS content, not inside HTML text nodes
  • Add visible button text or aria-label on interactive controls

Don’t

  • Confuse U+27A4 with U+27A1 (full arrow) or → (simple arrow)
  • Rely on ➤ alone to communicate meaning in critical UI
  • Assume every font renders arrow Dingbats crisply at small sizes
  • Use arrow glyphs as the only navigation or state cue without labels
  • Mix CSS escapes into HTML text nodes (use numeric refs in markup)

Key Takeaways

1

Two numeric references render the same glyph

&#x27A4; &#10148;
2

CSS content escape

\27A4
3

U+27A4 is a compact arrowhead; pairs with full arrow U+27A1

4

Dingbats block U+2700–U+27BF; no named HTML entity

5

Pair navigation glyphs with text or ARIA when meaning must be clear

❓ Frequently Asked Questions

Use &#x27A4; (hex), &#10148; (decimal), or \27A4 in CSS content. There is no named entity; all valid methods render ➤.
U+27A4 (hex 27A4, decimal 10148). Dingbats (U+2700–U+27BF). Unicode name BLACK RIGHTWARDS ARROWHEAD.
For navigation symbols, UI design, directional pointers, next/forward indicators, bullet-style markers, and flow diagrams.
Numeric references belong in HTML. The \27A4 escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.
No. Use &#x27A4;, &#10148;, or \27A4 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