HTML Entity for South West Double Arrow (⇙)

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

What You'll Learn

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

Render it with ⇙, ⇙, ⇙, or CSS \21D9. Distinct from the single-line South West Arrow (↙, ↙).

⚡ Quick Reference — South West Double Arrow

Unicode U+21D9

Arrows block

Hex Code ⇙

Hexadecimal reference

HTML Code ⇙

Decimal reference

Named Entity ⇙

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21D9
Hex code       ⇙
HTML code      ⇙
Named entity   ⇙
CSS code       \21D9
Style          Double-line arrow
Related        U+2199 = south west 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: "\21D9";
  }
 </style>
</head>
<body>
<p>Double arrow (named): &swArr;</p>
<p>Double arrow (hex): &#x21D9;</p>
<p>Double arrow (decimal): &#8665;</p>
<p id="point">Double arrow (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The South West 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 &swArr; &#x21D9; &#8665; \21D9

🧠 How It Works

1

Named HTML Entity

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

HTML markup
2

Hexadecimal Code

&#x21D9; uses Unicode hexadecimal 21D9 to display ⇙ in HTML markup.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

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

Use Cases

The South West Double Arrow (⇙) commonly appears in:

🗼 Navigation

Maps and guides emphasizing south-west 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-west arrow glyphs.

🛠 Dashboards

Data views with emphasized downward-diagonal trend indicators.

💡 Best Practices

Do

  • Use &swArr; for readable source markup
  • Distinguish ⇙ (double) from ↙ (single, &swarr;)
  • 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 &swArr; (double, U+21D9) with &swarr; (single, U+2199)
  • Use padded Unicode notation like U+021D9—the correct value is U+21D9
  • Put CSS escape \21D9 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 ⇙

&swArr; &#x21D9; &#8665;
2

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

3

Unicode U+21D9 — SOUTH WEST DOUBLE ARROW (⇙)

4

&swArr; is double-line; &swarr; is single-line (U+2199)

❓ Frequently Asked Questions

Use &swArr; (named), &#x21D9; (hex), &#8665; (decimal), or \21D9 in CSS content. All four render ⇙.
U+21D9 (SOUTH WEST DOUBLE ARROW). Arrows block (U+2190–U+21FF). Hex 21D9, decimal 8665.
For directional indicators, navigation icons, UI elements, flowcharts, diagrams, and technical documentation that need a double-line south-west arrow.
&swArr; renders ⇙ (U+21D9, double-line south-west arrow). &swarr; renders ↙ (U+2199, single-line south-west arrow). They are different characters.
HTML references (&swArr;, &#8665;, or &#x21D9;) go in markup. The CSS escape \21D9 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