HTML Entity for Right Arrow Black Diamond (⤞)

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

What You'll Learn

How to display the Right Arrow Black Diamond (⤞) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+291E (RIGHTWARDS ARROW TO BLACK DIAMOND) in the Supplemental Arrows-B block (U+2900–U+297F)—a rightwards arrow pointing to a black diamond, used in navigation, flowcharts, diagrams, and UI design.

Render it with ⤞ (named), ⤞, ⤞, or CSS \291E. Related: U+291D (⤝, left arrow black diamond / ⤝), U+291F (⤟, left arrow bar black diamond / ⤟). Do not confuse ⤞ with plain U+2192 (→).

⚡ Quick Reference — Right Arrow Black Diamond

Unicode U+291E

Supplemental Arrows-B (U+2900–U+297F)

Hex Code ⤞

Hexadecimal reference

HTML Code ⤞

Decimal reference

Named Entity ⤞

Standard HTML entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+291E
Hex code       ⤞
HTML code      ⤞
Named entity   ⤞
CSS code       \291E
Meaning        Rightwards arrow to black diamond
Related        U+291D = left arrow black diamond (⤝, ⤝)
               U+291F = left arrow bar black diamond (⤟)
               U+2192 = right arrow (→)
Block          Supplemental Arrows-B (U+2900–U+297F)
1

Complete HTML Example

A simple example showing ⤞ using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\291E";
  }
 </style>
</head>
<body>
<p>Hex: &#x291E;</p>
<p>Decimal: &#10526;</p>
<p>Named: &rarrfs;</p>
<p id="point">CSS: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+291E renders in modern browsers when the font includes Supplemental Arrows-B glyphs:

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

👀 Live Preview

See the Right Arrow Black Diamond (⤞) in navigation and diagram contexts:

Next control Next ⤞
Flow endpoint Step 1 ⤞ End
Large glyph
Arrow comparison ⤝ ⤞ →
Entity refs &rarrfs; &#x291E; &#10526; \291E

🧠 How It Works

1

Named HTML Entity

&rarrfs; is the named entity for U+291E (rightwards arrow to black diamond). It is easy to read in navigation and UI markup.

HTML markup
2

Hexadecimal Code

&#x291E; uses the Unicode hexadecimal value 291E. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

&#10526; uses the decimal Unicode value 10526 for the same symbol.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+291E in Supplemental Arrows-B. Next: Right Arrow Double Vertical Stroke.

Use Cases

The Right Arrow Black Diamond (⤞) is commonly used in:

📊 Flowcharts

Process mapping and workflow diagrams showing direction ending at a black diamond endpoint.

🛠 Diagrams

Technical and system diagrams representing direction and endpoints.

🧭 Navigation

Menus, breadcrumbs, and UI elements indicating forward direction with a diamond endpoint.

🎨 UI design

Buttons, icons, and interactive elements with directional indicators.

📄 Documentation

Process flows, step-by-step guides, and workflow visualizations.

♿ Accessibility

Pair ⤞ with visible text or aria-label so meaning is not symbol-only.

💡 Best Practices

Do

  • Prefer &rarrfs; in HTML for readable source markup
  • Pair the symbol with text (e.g. “Next ⤞”) or use aria-label
  • Use fonts that support Supplemental Arrows-B (U+291E)
  • Set <meta charset="utf-8">
  • Link to Left Arrow Black Diamond for the paired symbol
  • Keep one entity style consistent across your project

Don’t

  • Confuse ⤞ with → (plain right arrow) or ⤝ (left arrow black diamond)
  • Use padded Unicode notation like U+0291E—the correct value is U+291E
  • Use CSS escape \291E inside HTML text nodes
  • Use the symbol alone without context for critical navigation actions
  • Assume legacy systems render U+291E without testing

Key Takeaways

1

Four ways to render U+291E in HTML and CSS

&rarrfs; &#x291E; &#10526;
2

For CSS, use \291E in the content property

3

Unicode U+291E — RIGHTWARDS ARROW TO BLACK DIAMOND (⤞)

4

Distinct from →, ⤝, and other Supplemental Arrows-B glyphs

❓ Frequently Asked Questions

Use &rarrfs; (named), &#x291E; (hex), &#10526; (decimal), or \291E in CSS content. All four render ⤞.
U+291E (RIGHTWARDS ARROW TO BLACK DIAMOND). Supplemental Arrows-B block (U+2900–U+297F). Hex 291E, decimal 10526.
No. ⤞ (U+291E) is a rightwards arrow to a black diamond. → (U+2192) is a plain rightwards arrow. They are different Unicode characters.
For navigation symbols, flowcharts, diagrams, UI design elements, directional indicators, process flows, and content that needs a rightward arrow ending at a black diamond endpoint.
&rarrfs; is the standard named HTML entity for U+291E and is the most readable option in HTML source.

Explore More HTML Entities!

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