HTML Entity for South East Arrow With Hook (⤥)

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
U+2925Supplemental Arrows-B
⤥Hexadecimal reference
⤥Decimal reference
⤥Most readable option
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)Complete HTML Example
A simple example showing ⤥ using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\2925";
}
</style>
</head>
<body>
<p>Hooked arrow (named): ⤥</p>
<p>Hooked arrow (hex): ⤥</p>
<p>Hooked arrow (decimal): ⤥</p>
<p id="point">Hooked arrow (CSS): </p>
</body>
</html>🌐 Browser Support
The South East Arrow With Hook (⤥) is supported in modern browsers when fonts include Supplemental Arrows-B glyphs:
👀 Live Preview
See the hooked arrow in navigation and diagram contexts:
🧠 How It Works
Named HTML Entity
⤥ is the semantic named entity for the south-east arrow with hook—the most readable option in source HTML.
Hexadecimal Code
⤥ uses Unicode hexadecimal 2925 to display ⤥ in HTML markup.
Decimal HTML Code
⤥ uses decimal Unicode value 10533 for the same character.
CSS Entity
\2925 is used in CSS stylesheets in the content property of pseudo-elements like ::after.
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:
Maps and guides with hooked south-east directional paths.
Buttons and icons for return, loop, or hooked-route actions.
Diagrams showing flows with hook or return-arrow notation.
Technical docs with hooked directional symbols.
Layouts needing specialized hooked arrow glyphs.
Data views with curved or hooked direction indicators.
💡 Best Practices
Do
- Use
⤥for readable source markup - Add
aria-labelwhen 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
\2925in HTML text nodes - Confuse ⤥ with the simple south-east arrow ↘ (
↘) - Rely on the glyph alone without context for accessibility
- Mix entity styles randomly in one file
Key Takeaways
Four HTML/CSS references all render ⤥
⤥ ⤥ ⤥For CSS stylesheets, use \2925 in the content property
Unicode U+2925 — SOUTH EAST ARROW WITH HOOK (⤥)
Prefer ⤥ for readability in HTML source
Previous: SE Arrow To Corner Next: SE Double Arrow
❓ Frequently Asked Questions
⤥ (named), ⤥ (hex), ⤥ (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.⤥ is more readable in source markup. Numeric codes (⤥ or ⤥) are explicit and work everywhere. Both produce the same glyph (⤥).⤥, ⤥, or ⤥) 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.
8 people found this page helpful
