HTML Entity for South East Arrow South West Arrow (⤩)

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

What You'll Learn

How to display the South East Arrow South West Arrow (⤩) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+2929 (SOUTH EAST ARROW AND SOUTH WEST ARROW) in the Supplemental Arrows-B block (U+2900–U+297F)—a combined directional arrow pointing toward both south-east and south-west.

Render it with ⤩, ⤩, ⤩, or CSS \2929. Ideal for navigation UI, multi-directional labels, flowcharts, and technical documentation.

⚡ Quick Reference — SE Arrow SW Arrow

Unicode U+2929

Supplemental Arrows-B

Hex Code ⤩

Hexadecimal reference

HTML Code ⤩

Decimal reference

Named Entity ⤩

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2929
Hex code       ⤩
HTML code      ⤩
Named entity   ⤩
CSS code       \2929
Direction      South-east and south-west
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: "\2929";
  }
 </style>
</head>
<body>
<p>Combined arrow (named): &seswar;</p>
<p>Combined arrow (hex): &#x2929;</p>
<p>Combined arrow (decimal): &#10537;</p>
<p id="point">Combined arrow (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The combined arrow (⤩) 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 combined arrow in navigation and diagram contexts:

Single symbol
Navigation Routes split ⤩ south-east and south-west
Diagram label Fork point ⤩ dual downward paths
Compare arrows Simple ↘  |  Combined ⤩
Numeric refs &seswar; &#x2929; &#10537; \2929

🧠 How It Works

1

Named HTML Entity

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

HTML markup
2

Hexadecimal Code

&#x2929; uses Unicode hexadecimal 2929 to display ⤩ in HTML markup.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

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

Use Cases

The South East Arrow South West Arrow (⤩) commonly appears in:

🗼 Navigation

Maps and guides showing split paths toward south-east and south-west.

📱 UI elements

Buttons and icons representing dual downward diagonal directions.

📊 Flowcharts

Diagrams with branching arrows and multi-directional flows.

📄 Documentation

Technical docs with combined directional notation.

🎨 Web design

Layouts needing specialized multi-direction arrow glyphs.

🛠 Dashboards

Data views showing diverging trends or split routes.

💡 Best Practices

Do

  • Use &seswar; 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+02929—the correct value is U+2929
  • Put CSS escape \2929 in HTML text nodes
  • Confuse ⤩ with the simple south-east arrow ↘ (&searr;)
  • 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 ⤩

&seswar; &#x2929; &#10537;
2

For CSS stylesheets, use \2929 in the content property

3

Unicode U+2929 — SE and SW combined arrow (⤩)

4

Prefer &seswar; for readability in HTML source

❓ Frequently Asked Questions

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