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

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

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

Unicode U+2930

Supplemental Arrows-B

Hex Code ⤰

Hexadecimal reference

HTML Code ⤰

Decimal reference

Named Entity

Use numeric codes only

Reference Table
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 (↘ / ↘)
1

Complete HTML Example

A simple example showing the arrow (⤰) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2930";
  }
 </style>
</head>
<body>
<p>Arrow (hex): &#x2930;</p>
<p>Arrow (decimal): &#10544;</p>
<p id="point">Arrow (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Rising Diagonal Crossing South East Arrow (⤰) is supported in all modern browsers when the font includes Supplemental Arrows-B glyphs:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Rising Diagonal Crossing South East Arrow (⤰) rendered live in different contexts:

Inline navigation Follow path ⤰ to the next section.
Large glyph
Flowchart cue Step A ⤰ Step B
Arrow comparison ⤰ ⤫ ↘
Numeric refs &#x2930; &#10544; \2930
Diagram label Input ⤰ Process ⤰ Output

🧠 How It Works

1

Hexadecimal Code

&#x2930; uses the Unicode hexadecimal value 2930. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#10544; uses the decimal Unicode value 10544 to display the same character.

HTML markup
3

CSS Entity

\2930 is used in CSS stylesheets in the content property of pseudo-elements like ::after.

CSS stylesheet
=

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:

➡ Directional Indicators

Show complex diagonal and south-east movement in guides.

🔍 Navigation Elements

Use in menus, breadcrumbs, and navigation flows.

📊 Flowcharts

Indicate directional flow between process steps.

📄 Diagrams

Include in technical and architecture diagrams.

🚀 Process Flows

Document workflows and step-by-step procedures.

🎨 Graphic Design

Add to infographics and visual content needing arrow motifs.

💡 Best Practices

Do

  • Use &#x2930; or &#10544; for explicit numeric references
  • Distinguish ⤰ from ⤫ (crossing pattern) and ↘ (simple SE arrow)
  • Add aria-label when the arrow conveys navigation meaning
  • Verify your font supports Supplemental Arrows-B glyphs
  • Scale with CSS font-size for diagram clarity

Don’t

  • Assume a named HTML entity exists—there is none for U+2930
  • Use CSS escape \2930 inside 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 \u2930 instead)

Key Takeaways

1

Three methods render ⤰ — no named entity

&#x2930; &#10544;
2

For CSS, use \2930 in the content property

3

Unicode U+2930 — Supplemental Arrows-B directional symbol

4

Ideal for flowcharts, navigation, and complex diagonal movement cues

❓ Frequently Asked Questions

Use &#x2930; (hex), &#10544; (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.
In directional indicators, navigation elements, flowcharts, diagrams, process flows, and graphic design requiring complex diagonal/south-east movement notation.
HTML references (&#10544; or &#x2930;) go in markup. The CSS escape \2930 is used in stylesheets, typically on ::after or ::before.
Named HTML entities cover a subset of common characters. Supplemental Arrows-B symbols like U+2930 use numeric hex or decimal codes or CSS escapes, which is standard for specialized arrow blocks.

Explore More HTML Entities!

Discover 1500+ HTML character references — arrows, symbols, letters, 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