HTML Entity for Rising Diagonal Crossing South East Arrow (⤰)

What You'll Learn
How to display the Rising Diagonal Crossing South East Arrow (⤰) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2930 (RISING DIAGONAL CROSSING SOUTH EAST ARROW) in the Supplemental Arrows-B block (U+2900–U+297F)—a directional arrow combining a rising diagonal with a south-east arrow stroke.
Use ⤰, ⤰, or CSS \2930. There is no named HTML entity. Do not confuse ⤰ with U+292B (⤫, diagonal crossing pattern) or U+2198 (↘, simple south east arrow / ↘).
⚡ Quick Reference — Rising Diagonal Crossing South East Arrow
U+2930Supplemental Arrows-B
⤰Hexadecimal reference
⤰Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2930
Hex code ⤰
HTML code ⤰
Named entity (none)
CSS code \2930
Related U+292B = rising diagonal crossing falling (⤫)
U+2198 = south east arrow (↘ / ↘)Complete HTML Example
A simple example showing the arrow (⤰) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2930";
}
</style>
</head>
<body>
<p>Arrow (hex): ⤰</p>
<p>Arrow (decimal): ⤰</p>
<p id="point">Arrow (CSS): </p>
</body>
</html>🌐 Browser Support
The Rising Diagonal Crossing South East Arrow (⤰) is supported in all modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Rising Diagonal Crossing South East Arrow (⤰) rendered live in different contexts:
🧠 How It Works
Hexadecimal Code
⤰ uses the Unicode hexadecimal value 2930. The x prefix indicates hexadecimal format.
Decimal HTML Code
⤰ uses the decimal Unicode value 10544 to display the same character.
CSS Entity
\2930 is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All three methods produce ⤰. Unicode U+2930 is in Supplemental Arrows-B. There is no named HTML entity. Previous: Rising Diagonal Crossing Falling Diagonal (U+292B).
Use Cases
The Rising Diagonal Crossing South East Arrow (⤰) is commonly used in:
Show complex diagonal and south-east movement in guides.
Use in menus, breadcrumbs, and navigation flows.
Indicate directional flow between process steps.
Include in technical and architecture diagrams.
Document workflows and step-by-step procedures.
Add to infographics and visual content needing arrow motifs.
💡 Best Practices
Do
- Use
⤰or⤰for explicit numeric references - Distinguish ⤰ from ⤫ (crossing pattern) and ↘ (simple SE arrow)
- Add
aria-labelwhen the arrow conveys navigation meaning - Verify your font supports Supplemental Arrows-B glyphs
- Scale with CSS
font-sizefor diagram clarity
Don’t
- Assume a named HTML entity exists—there is none for U+2930
- Use CSS escape
\2930inside HTML text nodes - Confuse ⤰ with generic south-east arrow ↘
- Rely on the glyph alone without context for screen readers
- Use HTML entities in JS (use
\u2930instead)
Key Takeaways
Three methods render ⤰ — no named entity
⤰ ⤰For CSS, use \2930 in the content property
Unicode U+2930 — Supplemental Arrows-B directional symbol
Ideal for flowcharts, navigation, and complex diagonal movement cues
Previous: Rising Diagonal Crossing Falling Diagonal Next: Rotated Capital Q
❓ Frequently Asked Questions
⤰ (hex), ⤰ (decimal), or \2930 in CSS content. There is no named HTML entity. All three render ⤰.U+2930 (RISING DIAGONAL CROSSING SOUTH EAST ARROW). Supplemental Arrows-B block (U+2900–U+297F). Hex 2930, decimal 10544.⤰ or ⤰) go in markup. The CSS escape \2930 is used in stylesheets, typically on ::after or ::before.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, letters, and more.
8 people found this page helpful
