HTML Entity for South West Arrow (↙)

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

What You'll Learn

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

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

⚡ Quick Reference — South West Arrow

Unicode U+2199

Arrows block

Hex Code ↙

Hexadecimal reference

HTML Code ↙

Decimal reference

Named Entity ↙

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2199
Hex code       ↙
HTML code      ↙
Named entity   ↙
CSS code       \2199
Direction      South-west (↙)
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: "\2199";
  }
 </style>
</head>
<body>
<p>South-west arrow (named): &swarr;</p>
<p>South-west arrow (hex): &#x2199;</p>
<p>South-west arrow (decimal): &#8601;</p>
<p id="point">South-west arrow (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The South West 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 West Arrow in navigation and UI contexts:

Single symbol
Navigation Go to previous section ↙
Direction grid ↖ ↗ ↘ ↙
UI button Collapse panel ↙
Numeric refs &swarr; &#x2199; &#8601; \2199

🧠 How It Works

1

Named HTML Entity

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

HTML markup
2

Hexadecimal Code

&#x2199; uses Unicode hexadecimal 2199 to display ↙ in HTML markup.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

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

Use Cases

The South West Arrow (↙) commonly appears in:

🗼 Navigation

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

📱 UI elements

Buttons, 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 &swarr; 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+02199—the correct value is U+2199
  • Put CSS escape \2199 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 ↙

&swarr; &#x2199; &#8601;
2

For CSS stylesheets, use \2199 in the content property

3

Unicode U+2199 — SOUTH WEST ARROW (↙)

4

Prefer &swarr; for readability in HTML source

❓ Frequently Asked Questions

Use &swarr; (named), &#x2199; (hex), &#8601; (decimal), or \2199 in CSS content. All four render ↙.
U+2199 (SOUTH WEST ARROW). Arrows block (U+2190–U+21FF). Hex 2199, decimal 8601.
For directional indicators, navigation icons, UI elements, flowcharts, diagrams, and technical documentation that need a south-west pointing arrow.
The named entity &swarr; is more readable in source markup. Numeric codes (&#8601; or &#x2199;) are explicit and work everywhere. Both produce the same glyph (↙).
HTML references (&swarr;, &#8601;, or &#x2199;) go in markup. The CSS escape \2199 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