HTML Entity for Falling Diagonal Crossing Rising Diagonal (⤬)

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

What You'll Learn

How to display the Falling Diagonal Crossing Rising Diagonal (⤬) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+292C (FALLING DIAGONAL CROSSING RISING DIAGONAL) in the Supplemental Arrows-B block (U+2900–U+297F)—used for geometric designs, creative typography, decorative elements, and diagrams that show crossing or diagonal relations.

Render it with ⤬, ⤬, or CSS escape \292C. There is no named HTML entity. Do not confuse ⤬ with U+292F (⤯, falling diagonal crossing north east arrow).

⚡ Quick Reference — FDC Rising Diagonal

Unicode U+292C

Supplemental Arrows-B

Hex Code ⤬

Hexadecimal reference

HTML Code ⤬

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+292C
Hex code       ⤬
HTML code      ⤬
Named entity   (none)
CSS code       \292C
Meaning        Falling diagonal crossing rising diagonal
Related        U+292F = FDC NE arrow (⤯); U+292D = Rising diagonal crossing falling diagonal (⤭)
1

Complete HTML Example

This example demonstrates the FDC Rising Diagonal (⤬) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity for this symbol:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\292C";
  }
 </style>
</head>
<body>
<p>FDC Rising Diagonal using Hexadecimal: &#x292C;</p>
<p>FDC Rising Diagonal using HTML Code: &#10540;</p>
<p id="point">FDC Rising Diagonal using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The FDC Rising Diagonal entity is universally supported in modern browsers when a font with symbol coverage is available:

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

👀 Live Preview

See the falling diagonal crossing rising diagonal (⤬) as a divider and compared with the NE crossing arrow (⤯):

Section divider Intro ⤬ Details ⤬ Summary
Large glyph
vs FDC NE arrow ⤬ (rising crossing)   vs   ⤯ (NE crossing)
Numeric refs &#x292C; &#10540;
No named entity Use hex or decimal only

🧠 How It Works

1

Hexadecimal Code

&#x292C; uses the Unicode hexadecimal value 292C to display the Falling Diagonal Crossing Rising Diagonal. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\292C is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+292C in the Supplemental Arrows-B block (U+2900–U+297F). No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Falling Diagonal Crossing Rising Diagonal (⤬) commonly appears in:

◆ Geometric designs

Add crossing-diagonal elements to geometric patterns, layouts, and visual compositions.

✍ Creative typography

Use in headlines, decorative text, and typography where crossing diagonals add visual interest.

✨ Decorative symbols

Enhance borders, dividers, and decorative sections with this crossing-diagonal symbol.

📐 Diagrams

Show crossing or intersecting relations in diagrams, flowcharts, or technical notation.

📑 Math notation

Use in mathematical or scientific content where crossing diagonals have a specific meaning.

🎨 Branding

Incorporate into logos, icons, or branding elements that use diagonal or crossing motifs.

💡 Best Practices

Do

  • Use &#x292C; or &#10540; for readable symbol markup
  • Pair the symbol with a label or legend when meaning might not be obvious
  • Add aria-label when the symbol carries semantic meaning
  • Use the CSS escape in ::before or ::after for repeated decorative elements
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ⤬ with ⤯ (falling diagonal crossing north east arrow)
  • Expect a named entity—none exists for U+292C
  • Put CSS escape \292C in HTML text nodes
  • Assume every font includes Supplemental Arrows-B glyphs
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML numeric references plus CSS render ⤬

&#x292C; &#10540;
2

For CSS stylesheets, use the escape in the content property

\292C
3

Unicode U+292C — FALLING DIAGONAL CROSSING RISING DIAGONAL

4

Useful for geometric designs, typography, diagrams, and decorative content

5

Three methods, no named HTML entity

❓ Frequently Asked Questions

Use &#x292C; (hex), &#10540; (decimal), or \292C in CSS content. There is no named entity.
U+292C (FALLING DIAGONAL CROSSING RISING DIAGONAL). Supplemental Arrows-B block (U+2900–U+297F). Hex 292C, decimal 10540. Used for geometric and decorative notation.
For geometric designs, creative typography, decorative symbols, diagrams showing crossing relations, technical or mathematical notation, borders and dividers, and logo or branding elements.
Named entities cover a subset of common characters. Supplemental Arrows-B symbols like U+292C have no named entity—use &#x292C; or &#10540; in markup, or \292C in CSS.
HTML references (&#10540; or &#x292C;) go in markup. The CSS escape \292C is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.

Explore More HTML Entities!

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