HTML Entity for Dashed Triangle Headed Right Arrow (➟)

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

What You'll Learn

How to display the Dashed Triangle Headed Right Arrow (➟) in HTML using hexadecimal, decimal, and CSS entity methods. This character is U+279F in the Dingbats block (U+2700–U+27BF), used for directional cues, navigation indicators, flowcharts, and diagrams.

There is no named HTML entity for U+279F. Use ➟, ➟, or \279F in CSS content. All three methods produce the same glyph in modern browsers.

⚡ Quick Reference — Dashed Triangle Headed Right Arrow

Unicode U+279F

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+279F
Hex code       ➟
HTML code      ➟
Named entity   —
CSS code       \279F
1

Complete HTML Example

This example demonstrates the Dashed Triangle Headed 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: "\279F";
  }
 </style>
</head>
<body>
<p>Dashed Triangle Headed Right Arrow using Hexadecimal: &#x279F;</p>
<p>Dashed Triangle Headed Right Arrow using HTML Code: &#10143;</p>
<p id="point">Dashed Triangle Headed Right Arrow using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+279F is supported in modern browsers; use a font with Dingbats coverage for consistent glyph display:

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

👀 Live Preview

See the Dashed Triangle Headed Right Arrow (➟) in navigation and diagram contexts:

Navigation Next step ➟
Flow Start ➟ Process ➟ End
CTA link Read more ➟
Large glyph
Monospace refs &#x279F; &#10143; \279F

🧠 How It Works

1

Hexadecimal Code

&#x279F; uses the Unicode hexadecimal value 279F to display the arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\279F is used in CSS stylesheets, particularly in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

All three methods produce the arrow: . Unicode U+279F is in Dingbats (U+2700–U+27BF). No named HTML entity exists.

Use Cases

The Dashed Triangle Headed Right Arrow (➟) is commonly used in:

🧭 Navigation & UI

Next/forward buttons, breadcrumbs, carousels, and indicators for continue or next step.

📊 Flowcharts

Process flows, decision trees, and diagrams where a dashed arrow shows direction.

📝 Instructional

Tutorials, step-by-step guides, and docs that point to the next action or section.

🎨 Visual design

Custom icons, list markers, and decorative dashed right-pointing arrows.

🔗 Call-to-action

CTA buttons, “read more” links, and indicators directing users forward.

🔤 Symbol references

Unicode tables, HTML entity guides, and arrow symbol documentation.

💡 Best Practices

Do

  • Use &#x279F; or &#10143; since no named entity exists
  • Choose fonts with Dingbats coverage (Segoe UI Symbol, Noto Sans Symbols)
  • Pair ➟ with text or aria-label (e.g. “Next page”)
  • Use \279F only inside CSS content
  • Keep hex or decimal style consistent across the document

Don’t

  • Assume a named entity exists—U+279F has none
  • Rely on fonts that omit Dingbats (glyph may show as a box)
  • Use the arrow alone without accessible context for screen readers
  • Put CSS escape \279F in HTML text nodes
  • Mix hex and decimal styles randomly in one file

Key Takeaways

1

No named entity—use numeric references

&#x279F; &#10143;
2

For CSS stylesheets, use the escape in the content property

\279F
3

Unicode U+279F — Dingbats block (U+2700–U+27BF)

4

Ideal for navigation, flowcharts, and directional UI cues

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x279F; (hex), &#10143; (decimal), or \279F in CSS content. There is no named HTML entity. All produce ➟.
U+279F. Dingbats block (U+2700–U+27BF). Hex 279F, decimal 10143. Used for directional and navigation cues.
In navigation indicators, flowcharts and diagrams, UI elements (next, continue), instructional content, and anywhere a dashed right-pointing arrow with a triangle head is needed.
HTML5 named entities focus on commonly used characters. U+279F is a Dingbats symbol with no named entity. Use &#10143; or &#x279F; in HTML.
HTML numeric references (&#10143; or &#x279F;) go in markup. The CSS escape \279F is used in stylesheets, typically in the content property of pseudo-elements. Both render ➟.

Explore More HTML Entities!

Discover 1500+ HTML character references — arrows, dingbats, math operators, 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