HTML Entity for South East Arrow (↘)

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

What You'll Learn

How to display the South East Arrow (↘) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+2198 (SOUTH EAST ARROW) in the Arrows block (U+2190–U+21FF)—a diagonal arrow pointing toward the south-east direction.

Render it with ↘, ↘, ↘, or CSS \2198. Ideal for navigation UI, directional labels, flowcharts, and technical documentation.

⚡ Quick Reference — South East Arrow

Unicode U+2198

Arrows block

Hex Code ↘

Hexadecimal reference

HTML Code ↘

Decimal reference

Named Entity ↘

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2198
Hex code       ↘
HTML code      ↘
Named entity   ↘
CSS code       \2198
Direction      South-east (↘)
Block          Arrows (U+2190–U+21FF)
1

Complete HTML Example

A simple example showing ↘ using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2198";
  }
 </style>
</head>
<body>
<p>South-east arrow (named): &searr;</p>
<p>South-east arrow (hex): &#x2198;</p>
<p>South-east arrow (decimal): &#8600;</p>
<p id="point">South-east arrow (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The South East Arrow (↘) is supported in all modern browsers when fonts include Arrows characters:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the South East Arrow in navigation and UI contexts:

Single symbol
Navigation Scroll down ↘ for more content
Direction grid ↖ ↗ ↘ ↙
UI button Expand section ↘
Numeric refs &searr; &#x2198; &#8600; \2198

🧠 How It Works

1

Named HTML Entity

&searr; is the semantic named entity for the south-east arrow—the most readable option in source HTML.

HTML markup
2

Hexadecimal Code

&#x2198; uses Unicode hexadecimal 2198 to display ↘ in HTML markup.

HTML markup
3

Decimal HTML Code

&#8600; uses decimal Unicode value 8600 for the same character.

HTML markup
4

CSS Entity

\2198 is used in CSS stylesheets in the content property of pseudo-elements like ::after.

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+2198 in the Arrows block (U+2190–U+21FF).

Use Cases

The South East Arrow (↘) commonly appears in:

🗼 Navigation

Menus, maps, and directional guides indicating south-east movement.

📱 UI elements

Buttons, expand/collapse controls, and scroll hints in web apps.

📊 Flowcharts

Diagrams and process flows that need diagonal directional arrows.

📄 Documentation

Technical docs, API references, and developer guides with directional notation.

🎨 Web design

Layouts, hero sections, and visual elements with directional cues.

🛠 Dashboards

Admin panels and data views showing trend or movement direction.

💡 Best Practices

Do

  • Use &searr; for readable source markup
  • Add aria-label when the arrow is the only control label
  • Pair ↘ with text for scroll or navigation hints
  • Pick one entity style (named, hex, or decimal) per project
  • Test arrow rendering across browsers and devices

Don’t

  • Use padded Unicode notation like U+02198—the correct value is U+2198
  • Put CSS escape \2198 in HTML text nodes
  • Confuse ↘ with other diagonal arrows (↖, ↗, ↙)
  • Rely on the arrow alone without context for accessibility
  • Mix entity styles randomly in one file

Key Takeaways

1

Four HTML/CSS references all render ↘

&searr; &#x2198; &#8600;
2

For CSS stylesheets, use \2198 in the content property

3

Unicode U+2198 — SOUTH EAST ARROW (↘)

4

Prefer &searr; for readability in HTML source

❓ Frequently Asked Questions

Use &searr; (named), &#x2198; (hex), &#8600; (decimal), or \2198 in CSS content. All four render ↘.
U+2198 (SOUTH EAST ARROW). Arrows block (U+2190–U+21FF). Hex 2198, decimal 8600.
For directional indicators, navigation icons, UI elements, flowcharts, diagrams, technical documentation, and any content that needs a south-east pointing arrow.
The named entity &searr; is more readable in source markup. Numeric codes (&#8600; or &#x2198;) are explicit and work everywhere. Both produce the same glyph (↘).
HTML references (&searr;, &#8600;, or &#x2198;) go in markup. The CSS escape \2198 is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.

Explore More HTML Entities!

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