HTML Entity for Heavy Right Arrow (➙)

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

What You'll Learn

How to display the Heavy Right Arrow (➙) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2799 (HEAVY RIGHT ARROW) in the Dingbats block (U+2700–U+27BF). It is a heavy right-pointing arrow—ideal for navigation, “next” or “continue” cues, flow indicators, and directional UI where a bold Dingbats arrow is needed beyond standard arrows like U+2192 (→) or diagonal U+279A (➚).

Render it with ➙, ➙, or CSS escape \2799. There is no named HTML entity. Do not confuse ➙ with U+27AD (➭, shaded white right arrow) or U+2794 (➔, heavy wide-headed rightwards arrow); each has a different shape and weight.

⚡ Quick Reference — Heavy Right Arrow

Unicode U+2799

Dingbats block

Hex Code ➙

Hexadecimal reference

HTML Code ➙

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2799
Hex code       ➙
HTML code      ➙
Named entity   (none)
CSS code       \2799
Meaning        Heavy right arrow
Related        U+2192 = rightwards arrow (→)
               U+279A = north east arrow (➚)
               U+27AD = shaded right arrow (➭)
1

Complete HTML Example

This example demonstrates the Heavy Right Arrow (➙) using hexadecimal code, decimal HTML code, and CSS content on navigation and CTA links:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2799";
  }
 </style>
</head>
<body>
<p>Heavy Right Arrow using Hexadecimal: &#x2799;</p>
<p>Heavy Right Arrow using HTML Code: &#10137;</p>
<p id="point">Heavy Right Arrow using CSS Entity</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Heavy Right Arrow (➙) is widely supported in modern browsers when the font includes Dingbats arrow glyphs:

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

👀 Live Preview

Heavy Right Arrow (➙) in context, compared with other arrow symbols:

Next link Next ➙
CTA button Continue ➙
Large glyph
Comparison ➙   →   ➭
Numeric refs &#x2799; &#10137; \2799

🧠 How It Works

1

Hexadecimal Code

&#x2799; uses the Unicode hexadecimal value 2799 to display the heavy right arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2799 is used in CSS stylesheets, particularly in content on ::after for Next links, menus, and buttons.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+2799 is in the Dingbats block. Next: Right Angle Bracket (❱).

Use Cases

The Heavy Right Arrow (➙) is commonly used in:

➙ Navigation

Link indicators, “next” or “more” cues in navigation, dropdowns, and menus.

🔄 Continue

“Next” or “Continue” in wizards, multi-step forms, and onboarding.

📊 Flowcharts

Flow direction, process steps, and relationship arrows in diagrams.

👉 CTA

“Learn more ➙” or “Continue ➙” on buttons and links.

🔨 CSS content

content: "\2799" on ::after without extra markup.

📝 Lists

Step indicators or list bullets for forward, directional emphasis.

💡 Best Practices

Do

  • Pair with visible text (“Next”, “Continue”) on actionable links
  • Use aria-label when the arrow alone might not convey the action
  • Apply content: "\2799" via a::after for consistent CTAs
  • Declare UTF-8 with <meta charset="utf-8">
  • Keep one numeric style (hex or decimal) per project
  • Mark decorative-only arrows with aria-hidden="true" when appropriate

Don’t

  • Use glyph-only controls without accessible names for primary actions
  • Confuse U+2799 (➙) with U+2192 (→) or U+27AD (➭)
  • Expect a named HTML entity for U+2799
  • Use CSS \2799 in HTML text nodes
  • Rely on arrow shape alone when direction or target is ambiguous

Key Takeaways

1

Two HTML numeric references plus CSS insert U+2799

&#x2799; &#10137;
2

For CSS, use \2799 in the content property

3

Unicode U+2799 — heavy right arrow (➙)

4

Distinct from standard U+2192 (→) and shaded U+27AD (➭)

❓ Frequently Asked Questions

Use &#x2799; (hex), &#10137; (decimal), or \2799 in CSS content. There is no named entity. All three methods render the arrow (➙) correctly.
U+2799 (HEAVY RIGHT ARROW). Dingbats block. Hex 2799, decimal 10137. The symbol (➙) is a heavy right-pointing arrow, widely used for navigation and directional flow.
For navigation links and menus, next/continue or forward indicators, flowcharts and process diagrams, call-to-action links, and any UI that needs a distinct right-pointing arrow for direction or flow.
HTML references (&#10137; or &#x2799;) go in markup. The CSS escape \2799 is used in stylesheets, typically on ::after for links and buttons. Both produce ➙.
Named entities cover common ASCII, Latin-1, and widely used symbols. U+2799 uses numeric hex (&#x2799;) or decimal (&#10137;) codes, which is standard for Dingbats arrow symbols.

Explore More HTML Entities!

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