HTML Entity for South West Arrow Hook (⤦)

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

What You'll Learn

How to display the South West Arrow Hook (⤦) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+2926 (SOUTH WEST ARROW WITH HOOK) in the Supplemental Arrows-B block (U+2900–U+297F)—a south-west directional arrow with a hooked end.

Render it with ⤦, ⤦, ⤦, or CSS \2926. Related simple arrow: South West Arrow (↙, ↙).

⚡ Quick Reference — SW Arrow Hook

Unicode U+2926

Supplemental Arrows-B

Hex Code ⤦

Hexadecimal reference

HTML Code ⤦

Decimal reference

Named Entity ⤦

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2926
Hex code       ⤦
HTML code      ⤦
Named entity   ⤦
CSS code       \2926
Direction      South-west with hook
Related        U+2199 = south west arrow (↙, ↙)
Block          Supplemental Arrows-B (U+2900–U+297F)
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: "\2926";
  }
 </style>
</head>
<body>
<p>Hooked arrow (named): &swarhk;</p>
<p>Hooked arrow (hex): &#x2926;</p>
<p>Hooked arrow (decimal): &#10534;</p>
<p id="point">Hooked arrow (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The South West Arrow Hook (⤦) is supported in modern browsers when fonts include Supplemental Arrows-B glyphs:

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

👀 Live Preview

See the hooked arrow in navigation and diagram contexts:

Single symbol
Navigation Return path ⤦ south-west with hook
Diagram label Flow continues ⤦ then hooks back
Compare arrows Simple ↙  |  With hook ⤦
Numeric refs &swarhk; &#x2926; &#10534; \2926

🧠 How It Works

1

Named HTML Entity

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

HTML markup
2

Hexadecimal Code

&#x2926; uses Unicode hexadecimal 2926 to display ⤦ in HTML markup.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\2926 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+2926 in Supplemental Arrows-B (U+2900–U+297F).

Use Cases

The South West Arrow Hook (⤦) commonly appears in:

🗼 Navigation

Maps and guides with hooked south-west directional paths.

📱 UI elements

Buttons for return, loop, or hooked-route actions.

📊 Flowcharts

Diagrams showing flows with hook or return-arrow notation.

📄 Documentation

Technical docs with hooked directional symbols.

🎨 Web design

Layouts needing specialized hooked arrow glyphs.

🛠 Dashboards

Data views with curved or hooked direction indicators.

💡 Best Practices

Do

  • Use &swarhk; for readable source markup
  • Add aria-label when the symbol is the only control label
  • Pair ⤦ with descriptive text in diagrams and UI
  • Pick one entity style (named, hex, or decimal) per project
  • Test rendering across browsers and font stacks

Don’t

  • Use padded Unicode notation like U+02926—the correct value is U+2926
  • Put CSS escape \2926 in HTML text nodes
  • Confuse ⤦ with the simple south-west arrow ↙ (&swarr;)
  • 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 ⤦

&swarhk; &#x2926; &#10534;
2

For CSS stylesheets, use \2926 in the content property

3

Unicode U+2926 — SOUTH WEST ARROW WITH HOOK (⤦)

4

Prefer &swarhk; for readability in HTML source

❓ Frequently Asked Questions

Use &swarhk; (named), &#x2926; (hex), &#10534; (decimal), or \2926 in CSS content. All four render ⤦.
U+2926 (SOUTH WEST ARROW WITH HOOK). Supplemental Arrows-B (U+2900–U+297F). Hex 2926, decimal 10534.
For directional indicators, navigation icons, UI elements, flowcharts, diagrams, and technical documentation that need a south-west arrow with a hooked end.
The named entity &swarhk; is more readable in source markup. Numeric codes (&#10534; or &#x2926;) are explicit and work everywhere. Both produce the same glyph (⤦).
HTML references (&swarhk;, &#10534;, or &#x2926;) go in markup. The CSS escape \2926 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