HTML Entity for Heavy Right Arrow (➙)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+2799

What Is Heavy Right Arrow?

Heavy right arrow (➙) is the Unicode character at U+2799 in Dingbats. Official name: HEAVY RIGHTWARDS ARROW. It is a bold rightwards arrow used for next/continue cues, navigation, and directional UI.

Remember
Character     ➙
Unicode       U+2799
Hex entity    ➙
Decimal       ➙
CSS escape    \2799
Named entity  (none)
Meaning       heavy rightwards arrow
Not the same  → (→) · ⇒ (⇒) · ➚

Prefer ➙ or ➙ in HTML (no named form). You can also type ➙ in a UTF-8 document. For a classic text arrow with a named entity, prefer →.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityNone—
Hex entity➙HTML markup (preferred)
Decimal entity➙HTML markup
Direct character➙HTML text (UTF-8)
CSS escape\2799Stylesheet content

When to Use Which

SituationUse
Bold Dingbats next / continue / right cue➙ plus visible text or aria-label
Classic text / math right arrowRight arrow — → (→)
Double right arrow⇒ (⇒)
Northeast Dingbats arrowHeavy north east arrow — ➚
Dashed triangle-headed right arrowHeavy dashed triangle headed right arrow
Generated text via ::before / ::aftercontent: "\2799"

Live Preview

Symbol alone, in a sample label, and next to related forms.

Glyph ➙
Large glyph ➙
Sample Next ➙
Compared ➙   →   ⇒   ➚
With entities Hex: ➙ | Decimal: ➙

Complete HTML Example

One page that shows heavy right arrow with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to display ➙ in HTML and CSS.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Heavy Right Arrow (U+2799) in HTML</title>
  <style>
    #point::after {
      content: "\2799";
    }
  </style>
</head>
<body>
  <p>Built with Hex: &#x2799;</p>
  <p>Built with Decimal: &#10137;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ➙</p>
  <p><span aria-label="Next">Next &#x2799;</span></p>
  <p>Classic: &rarr;</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: &#x2799; inserts code point U+2799 → ➙.

2. Decimal: same code point as 10137 → &#10137;. Same visual as hex.

3. CSS: use \2799 in content (not an HTML entity). #point::after appends ➙.

4. Typed: paste ➙ in a UTF-8 document when you need this dingbat. Prefer aria-label or nearby prose such as “Next” so meaning is clear to everyone.

Pitfalls & Tips

Common mistakes when working with heavy right arrow.

Name

No named entity

There is no HTML5 named entity for U+2799. Use &#x2799; or &#10137;. Do not invent &heavyrarr;. For classic right arrow, use &rarr;.

→

Not &rarr;

&rarr; is → (U+2192). Heavy right arrow is ➙. Related direction — different glyphs.

➚

Not northeast arrow

Heavy north east arrow is ➚ (U+279A). This page is the horizontal heavy rightwards form ➙.

Font

Font coverage

Some fonts omit Dingbats. If ➙ is missing, fall back to &rarr; or a font with U+2799 coverage.

CSS vs HTML

Do not mix escapes

\2799 belongs in CSS strings. &#x2799; / &#10137; belong in HTML.

a11y

Add accessible text

Screen readers may not announce ➙ clearly. Prefer aria-label="Next" or nearby prose for actions.

Semicolon

End references

Always finish entities with ; — write &#x2799;, not &#x2799.

Browser Support

Heavy right arrow (U+2799) and its entity forms (&#x2799;, &#10137;, CSS \\2799) are supported in all mainstream browsers. Visible glyphs depend on Dingbats font coverage.

✓ Universal support

Heavy Right Arrow (&#x2799;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+2799 Full support

Bottom line: Prefer &#x2799; in HTML (no named form). Use &#10137; when decimal form is required, and \\2799 only inside CSS content.

Key Takeaways

  • Unicode: heavy right arrow is U+2799 (decimal 10137) — glyph ➙.
  • HTML: no named entity — use &#x2799; / &#10137; / type ➙.
  • CSS: use \2799 inside content for generated text.
  • Meaning: ➙ ≠ &rarr; — use for bold Dingbats rightwards cues.

One line: U+2799 → &#x2799; / &#10137; / CSS \2799 (no named form).

Frequently Asked Questions

Use &#x2799; (hex), &#10137; (decimal), type ➙ directly in UTF-8, or the CSS escape \2799 in content. There is no named HTML entity for U+2799.
U+2799 (HEAVY RIGHTWARDS ARROW). Hex 2799, decimal 10137. It belongs to the Dingbats block (U+2700–U+27BF).
No. HTML5 does not define a named entity for this arrow. Prefer &#x2799; or &#10137;. For classic right arrow, use &rarr; (U+2192).
Use it for bold Dingbats next/continue cues, navigation, or directional UI. For a classic math/text arrow with a named entity, prefer &rarr;. For NE direction, see heavy north east arrow. For triangle-headed styles, see related Dingbats arrows.
HTML numeric entities (&#10137; or &#x2799;) go in markup. The CSS escape \2799 goes in stylesheet strings (usually content on ::before/::after).
No. Heavy right arrow is U+2799 (➙), a Dingbats glyph. &rarr; is U+2192 (→). Related direction — different code points and looks.

Did you know?

Heavy right arrow is Unicode U+2799 (decimal 10137) — glyph ➙ in Dingbats (official name HEAVY RIGHTWARDS ARROW). There is no HTML5 named entity; use &#x2799; or &#10137;. Prefer nearby text or aria-label (for example “Next”). Do not confuse it with classic right arrow &rarr; (→) or double right arrow &rArr; (⇒).

Next: Heavy Right Pointing Angle Bracket Ornament

Learn the HTML entity for heavy right pointing angle bracket ornament (U+2771).

Heavy right pointing angle bracket ornament tutorial →

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