HTML Entity for Triangle Headed Right Arrow (➝)

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

What You'll Learn

How to display the Triangle Headed Right Arrow (➝) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+279D (TRIANGLE-HEADED RIGHTWARDS ARROW) in the Dingbats block (U+2700–U+27BF)—a right-pointing arrow with a triangular head, used for navigation icons and directional UI.

Render it with ➝, ➝, or CSS escape \279D. There is no named HTML entity. Do not confuse ➝ with U+279E (➞, heavy triangle-headed right arrow) or U+2192 (→, simple rightwards arrow / →).

⚡ Quick Reference — Triangle Headed Right Arrow

Unicode U+279D

Dingbats

Hex Code ➝

Hexadecimal reference

HTML Code ➝

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+279D
Hex code       ➝
HTML code      ➝
Named entity   (none)
CSS code       \279D
Block          Dingbats (U+2700–U+27BF)
Official name  TRIANGLE-HEADED RIGHTWARDS ARROW
Related        U+279E = heavy triangle headed (➞), U+2192 = rightwards arrow (→)
1

Complete HTML Example

This example demonstrates the Triangle Headed Right Arrow (➝) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\279D";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x279D;</p>
<p>Using HTML Code: &#10141;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Triangle Headed Right Arrow renders in modern browsers when fonts include Dingbats glyphs:

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

👀 Live Preview

See the Triangle Headed Right Arrow (➝) in navigation context:

Next link Read more ➝
Large glyph
Compare → ➝ ➞
UI button Continue ➝
Numeric refs &#x279D; &#10141; \279D

🧠 How It Works

1

Hexadecimal Code

&#x279D; uses the Unicode hexadecimal value 279D to display the Triangle Headed Right Arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\279D is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+279D in Dingbats. No named entity. Previous: Trade Mark Sign. Next: Triangular Bullet.

Use Cases

The Triangle Headed Right Arrow (➝) commonly appears in:

🚀 Navigation Icons

Menus, buttons, and next-action controls.

🗺 Directional UI

Wayfinding and forward-movement indicators.

💻 Web Design

Call-to-action links and carousel controls.

📱 User Interfaces

Apps and software with forward navigation.

📈 Diagrams

Flowcharts and process flow documentation.

🎨 Design Elements

Logos and creative projects needing arrow cues.

📚 Tutorials

Step-by-step guides with forward progression.

💡 Best Practices

Do

  • Use &#x279D; or &#10141; for the triangle-headed arrow
  • Add aria-label (e.g. “Next”) when used as a navigation control
  • Verify fonts support Dingbats (U+279D) for consistent rendering
  • Pair with text labels like “Next” or “Continue” in UI
  • Test rendering across browsers and font stacks

Don’t

  • Confuse ➝ with ➞ (heavy variant) or → (simple rightwards arrow)
  • Rely on the symbol alone without accessible text in buttons
  • Put CSS escape \279D directly in HTML text nodes
  • Expect a named HTML entity for U+279D
  • Use HTML entities in JS (use \u279D instead)

Key Takeaways

1

Two HTML references both render ➝

&#x279D; &#10141;
2

For CSS stylesheets, use the escape in the content property

\279D
3

Unicode U+279D — Triangle-Headed Rightwards Arrow

4

No named entity—use numeric references or CSS escape

5

Dingbats block (U+2700–U+27BF) for decorative arrow symbols

❓ Frequently Asked Questions

Use &#x279D; (hex), &#10141; (decimal), or \279D in CSS content. There is no named HTML entity. All three produce ➝.
U+279D (TRIANGLE-HEADED RIGHTWARDS ARROW). Dingbats block (U+2700–U+27BF). Hex 279D, decimal 10141. Used for navigation and directional indicators.
For navigation icons, directional indicators, UI design, web interfaces, buttons, and any content requiring forward or next-action symbols.
HTML numeric references (&#10141; or &#x279D;) go directly in markup. The CSS escape \279D is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named HTML entities cover common ASCII, Latin-1, and select symbols. Dingbats arrows like ➝ use numeric hex or decimal references—standard practice for decorative arrow characters.

Explore More HTML Entities!

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