HTML Entity for Heavy South East Arrow (➘)

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

What You'll Learn

How to display the Heavy South East Arrow (➘) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2798 (HEAVY SOUTH EAST ARROW) in the Dingbats block (U+2700–U+27BF). It is a heavy south-east-pointing arrow (down-right)—ideal for navigation, flow diagrams, expand or download cues, maps, and directional UI where a distinct diagonal down-right arrow is needed beyond or Unicode .

Render it with ➘, ➘, or CSS escape \2798. There is no named HTML entity. Do not confuse ➘ with U+2198 (↘, standard south-east arrow) or U+279A (➚, heavy north-east arrow); each code point has a different glyph.

⚡ Quick Reference — South East Arrow

Unicode U+2798

Dingbats block

Hex Code ➘

Hexadecimal reference

HTML Code ➘

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2798
Hex code       ➘
HTML code      ➘
Named entity   (none)
CSS code       \2798
Meaning        Heavy south-east arrow
Related        U+2198 = SE arrow (↘)
               U+279A = heavy NE (➚)
               U+2799 = heavy SW (➙)
1

Complete HTML Example

This example demonstrates the Heavy South East Arrow (➘) using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2798";
  }
 </style>
</head>
<body>
<p>South East Arrow using Hexadecimal: &#x2798;</p>
<p>South East Arrow using HTML Code: &#10136;</p>
<p id="point">South East Arrow using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Heavy South East 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 South East Arrow (➘) in context, compared with other directional arrows:

Expand / more Show more ➘
Flow step Step 1 ➘ Step 2
Large glyph
Comparison ➘   ↘   ➚
Numeric refs &#x2798; &#10136; \2798

🧠 How It Works

1

Hexadecimal Code

&#x2798; uses the Unicode hexadecimal value 2798 to display the south-east arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2798 is used in CSS stylesheets, particularly in content on ::after for expand buttons, flow steps, and down-right direction cues.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+2798 is in the Dingbats block. Next: Heavy Sparkle.

Use Cases

The Heavy South East Arrow (➘) is commonly used in:

➘ Navigation

South-east (down-right) direction in menus, breadcrumbs, and wayfinding.

👈 UI elements

Buttons, links, and dropdown indicators for expand or next-step direction.

📊 Flowcharts

Process flow and decision-tree arrows pointing down-right.

🗺 Maps

Direction on maps, routing UI, and location movement cues.

🔨 CSS content

content: "\2798" on ::after without extra HTML.

📱 Mobile UI

App navigation, list items, and gesture hints for down-right actions.

💡 Best Practices

Do

  • Pair ➘ with aria-label (e.g. “Expand” or “South-east”) when it conveys action
  • Use content: "\2798" via ::after on expand or more buttons
  • Wrap navigation in semantic <nav> and links in <a>
  • Declare UTF-8 with <meta charset="utf-8">
  • Keep one numeric style (hex or decimal) per project
  • Combine visible text with the arrow so meaning stays clear

Don’t

  • Use ➘ alone on controls without accessible names
  • Confuse U+2798 (➘) with U+2198 (↘) or U+279A (➚)
  • Expect a named HTML entity for U+2798
  • Use CSS \2798 in HTML text nodes
  • Rely on the arrow alone when direction or action must be explicit

Key Takeaways

1

Two HTML numeric references plus CSS insert U+2798

&#x2798; &#10136;
2

For CSS, use \2798 in the content property (often ::after)

3

Unicode U+2798 — heavy south-east arrow (➘)

4

Distinct from standard SE U+2198 (↘) and heavy NE U+279A (➚)

❓ Frequently Asked Questions

Use &#x2798; (hex), &#10136; (decimal), or \2798 in CSS content. There is no named entity. All three methods render the arrow (➘) correctly.
U+2798 (HEAVY SOUTH EAST ARROW). Dingbats block. Hex 2798, decimal 10136. The symbol (➘) is a heavy arrow pointing down-right (south-east).
For directional indicators and navigation, UI buttons and menus, flowcharts and process diagrams, maps and wayfinding, download or expand cues, and any content that needs a clear south-east (down-right) symbol.
HTML references (&#10136; or &#x2798;) go in markup. The CSS escape \2798 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+2798 uses numeric hex (&#x2798;) or decimal (&#10136;) 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