HTML Entity for South East Double Arrow (⇘)

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

What You'll Learn

How to display the South East Double Arrow (⇘) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+21D8 (SOUTH EAST DOUBLE ARROW) in the Arrows block (U+2190–U+21FF)—a double-line directional arrow pointing toward the south-east.

Render it with ⇘, ⇘, ⇘, or CSS \21D8. Distinct from the single-line South East Arrow (↘, ↘).

⚡ Quick Reference — South East Double Arrow

Unicode U+21D8

Arrows block

Hex Code ⇘

Hexadecimal reference

HTML Code ⇘

Decimal reference

Named Entity ⇘

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21D8
Hex code       ⇘
HTML code      ⇘
Named entity   ⇘
CSS code       \21D8
Style          Double-line arrow
Related        U+2198 = south east arrow (↘, ↘)
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: "\21D8";
  }
 </style>
</head>
<body>
<p>Double arrow (named): &seArr;</p>
<p>Double arrow (hex): &#x21D8;</p>
<p>Double arrow (decimal): &#8664;</p>
<p id="point">Double arrow (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The South East Double 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 double arrow in navigation and UI contexts:

Single symbol
Navigation Fast scroll down ⇘
Compare style Single ↘  |  Double ⇘
Double arrows ⇕ ⇖ ⇗ ⇘ ⇙
Numeric refs &seArr; &#x21D8; &#8664; \21D8

🧠 How It Works

1

Named HTML Entity

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

HTML markup
2

Hexadecimal Code

&#x21D8; uses Unicode hexadecimal 21D8 to display ⇘ in HTML markup.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\21D8 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+21D8 in the Arrows block (U+2190–U+21FF).

Use Cases

The South East Double Arrow (⇘) commonly appears in:

🗼 Navigation

Maps and guides emphasizing south-east direction with a bold double arrow.

📱 UI elements

Buttons for fast scroll, jump, or strong directional emphasis.

📊 Flowcharts

Diagrams distinguishing double-line from single-line arrow flows.

📄 Documentation

Technical docs with double-arrow directional notation.

🎨 Web design

Layouts needing heavier or emphasized south-east arrow glyphs.

🛠 Dashboards

Data views with emphasized downward-diagonal trend indicators.

💡 Best Practices

Do

  • Use &seArr; for readable source markup
  • Distinguish ⇘ (double) from ↘ (single, &searr;)
  • Add aria-label when the symbol is the only control label
  • Pick one entity style (named, hex, or decimal) per project
  • Test rendering across browsers and devices

Don’t

  • Confuse &seArr; (double, U+21D8) with &searr; (single, U+2198)
  • Use padded Unicode notation like U+021D8—the correct value is U+21D8
  • Put CSS escape \21D8 in HTML text nodes
  • Rely on the glyph alone without context for accessibility
  • Mix entity styles randomly in one file

Key Takeaways

1

Four HTML/CSS references all render ⇘

&seArr; &#x21D8; &#8664;
2

For CSS stylesheets, use \21D8 in the content property

3

Unicode U+21D8 — SOUTH EAST DOUBLE ARROW (⇘)

4

&seArr; is double-line; &searr; is single-line (U+2198)

❓ Frequently Asked Questions

Use &seArr; (named), &#x21D8; (hex), &#8664; (decimal), or \21D8 in CSS content. All four render ⇘.
U+21D8 (SOUTH EAST DOUBLE ARROW). Arrows block (U+2190–U+21FF). Hex 21D8, decimal 8664.
For directional indicators, navigation icons, UI elements, flowcharts, diagrams, and technical documentation that need a double-line south-east arrow.
&seArr; renders ⇘ (U+21D8, double-line south-east arrow). &searr; renders ↘ (U+2198, single-line south-east arrow). They are different characters.
HTML references (&seArr;, &#8664;, or &#x21D8;) go in markup. The CSS escape \21D8 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, 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