HTML Entity for South East Arrow With Hook (⤥)

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

What You'll Learn

How to display the South East Arrow With Hook (⤥) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+2925 (SOUTH EAST ARROW WITH HOOK) in the Supplemental Arrows-B block (U+2900–U+297F)—a south-east directional arrow with a hook.

Render it with ⤥, ⤥, ⤥, or CSS \2925. Ideal for navigation UI, flowcharts, and technical documentation with hooked arrow notation.

⚡ Quick Reference — SE Arrow With Hook

Unicode U+2925

Supplemental Arrows-B

Hex Code ⤥

Hexadecimal reference

HTML Code ⤥

Decimal reference

Named Entity ⤥

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2925
Hex code       ⤥
HTML code      ⤥
Named entity   ⤥
CSS code       \2925
Direction      South-east with hook
Related        U+2198 = south east 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: "\2925";
  }
 </style>
</head>
<body>
<p>Hooked arrow (named): &searhk;</p>
<p>Hooked arrow (hex): &#x2925;</p>
<p>Hooked arrow (decimal): &#10533;</p>
<p id="point">Hooked arrow (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The South East Arrow With 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-east with hook
Diagram label Flow continues ⤥ then hooks back
Compare arrows Simple ↘  |  With hook ⤥
Numeric refs &searhk; &#x2925; &#10533; \2925

🧠 How It Works

1

Named HTML Entity

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

HTML markup
2

Hexadecimal Code

&#x2925; uses Unicode hexadecimal 2925 to display ⤥ in HTML markup.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

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

Use Cases

The South East Arrow With Hook (⤥) commonly appears in:

🗼 Navigation

Maps and guides with hooked south-east directional paths.

📱 UI elements

Buttons and icons 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 &searhk; 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+02925—the correct value is U+2925
  • Put CSS escape \2925 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 ⤥

&searhk; &#x2925; &#10533;
2

For CSS stylesheets, use \2925 in the content property

3

Unicode U+2925 — SOUTH EAST ARROW WITH HOOK (⤥)

4

Prefer &searhk; for readability in HTML source

❓ Frequently Asked Questions

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