HTML Entity for Rising Diagonal Crossing Falling Diagonal (⤫)

What You'll Learn
How to display the Rising Diagonal Crossing Falling Diagonal symbol (⤫) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+292B (RISING DIAGONAL CROSSING FALLING DIAGONAL) in the Supplemental Arrows-B block (U+2900–U+297F)—a diagonal crossing pattern used in decorative and diagrammatic content.
Use ⤫, ⤫, or CSS \292B. There is no named HTML entity. Do not confuse ⤫ with U+292C (⤬, falling diagonal crossing rising diagonal) or general multiplication sign U+00D7 (×).
⚡ Quick Reference — Rising Diagonal Crossing Falling Diagonal
U+292BSupplemental Arrows-B
⤫Hexadecimal reference
⤫Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+292B
Hex code ⤫
HTML code ⤫
Named entity (none)
CSS code \292B
Related U+292C = falling diagonal crossing rising (⤬)
U+00D7 = multiplication sign (×)Complete HTML Example
A simple example showing the symbol (⤫) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\292B";
}
</style>
</head>
<body>
<p>Symbol (hex): ⤫</p>
<p>Symbol (decimal): ⤫</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The Rising Diagonal Crossing Falling Diagonal symbol (⤫) is supported in all modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Rising Diagonal Crossing Falling Diagonal symbol (⤫) rendered live in different contexts:
🧠 How It Works
Hexadecimal Code
⤫ uses the Unicode hexadecimal value 292B. The x prefix indicates hexadecimal format.
Decimal HTML Code
⤫ uses the decimal Unicode value 10539 to display the same character.
CSS Entity
\292B is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All three methods produce ⤫. Unicode U+292B is in Supplemental Arrows-B. There is no named HTML entity. Previous: Ring In Equal To (U+2256).
Use Cases
The Rising Diagonal Crossing Falling Diagonal symbol (⤫) is commonly used in:
Add visual interest in borders, headers, and design accents.
Use in equations and documentation requiring diagonal crossing patterns.
Include in graphic compositions and visual motif libraries.
Display in logos, creative portfolios, and artistic content.
Use as a styled separator or typographic ornament.
Break content sections with a distinctive crossing symbol.
💡 Best Practices
Do
- Use
⤫or⤫for readable numeric references - Distinguish ⤫ from ⤬ (opposite diagonal crossing) and ×
- Add
aria-hidden="true"when used purely as decoration - Verify your font supports Supplemental Arrows-B glyphs
- Use CSS
font-sizeto scale the symbol for layout needs
Don’t
- Assume a named HTML entity exists—there is none for U+292B
- Use CSS escape
\292Binside HTML text nodes - Confuse ⤫ with the multiplication sign ×
- Overuse the symbol—it works best as an accent, not body text
- Use HTML entities in JS (use
\u292Binstead)
Key Takeaways
Three methods render ⤫ — no named entity
⤫ ⤫For CSS, use \292B in the content property
Unicode U+292B — Supplemental Arrows-B diagonal crossing symbol
Related: ⤬ is the opposite diagonal crossing variant
Previous: Ring In Equal To Next: Rising Diagonal Crossing South East Arrow
❓ Frequently Asked Questions
⤫ (hex), ⤫ (decimal), or \292B in CSS content. There is no named HTML entity. All three render ⤫.U+292B (RISING DIAGONAL CROSSING FALLING DIAGONAL). Supplemental Arrows-B block (U+2900–U+297F). Hex 292B, decimal 10539.⤫ or ⤫) go in markup. The CSS escape \292B 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
