HTML Entity for Right Arrow Above Short Left Arrow (⥂)

What You'll Learn
How to display the Right Arrow Above Short Left Arrow (⥂) in HTML using numeric references and CSS escapes. This character is U+2942 (RIGHT ARROW ABOVE SHORT LEFT ARROW) in the Supplemental Arrows-B block (U+2900–U+297F)—a specialized mathematical and logical arrow symbol with bidirectional arrow notation.
You can use hex ⥂, decimal ⥂, or CSS \2942. There is no named HTML entity for this character. Do not confuse ⥂ with plain U+2192 (→) or U+2190 (←) used separately.
⚡ Quick Reference — Right Arrow Above Short Left Arrow
U+2942Supplemental Arrows-B (U+2900–U+297F)
⥂Hexadecimal reference
⥂Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2942
Hex code ⥂
HTML code ⥂
Named entity (none)
CSS code \2942
Meaning Right arrow above short left arrow
Related U+2192 = right arrow (→)
U+2190 = left arrow (←)
U+2975 = right arrow above almost equal to (⥵)
U+2943 = left arrow above short right arrow (⥃)
Block Supplemental Arrows-B (U+2900–U+297F)Complete HTML Example
A simple example showing ⥂ using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\2942";
}
</style>
</head>
<body>
<p>Hex: ⥂</p>
<p>Decimal: ⥂</p>
<p id="point">CSS: </p>
</body>
</html>🌐 Browser Support
U+2942 is supported in all modern browsers when a font with Supplemental Arrows-B coverage is available:
👀 Live Preview
See the Right Arrow Above Short Left Arrow (⥂) in mathematical and logical contexts:
🧠 How It Works
Hexadecimal Code
⥂ uses the Unicode hexadecimal value 2942 to display the right arrow above short left arrow symbol.
Decimal HTML Code
⥂ uses the decimal Unicode value 10562 for the same character.
CSS Entity
\2942 is used in CSS stylesheets in the content property of pseudo-elements.
Same visual result
All three methods render ⥂. Unicode U+2942 in Supplemental Arrows-B. Next: Right Arrow Through Less-Than (⥴).
Use Cases
The Right Arrow Above Short Left Arrow (⥂) is commonly used in:
Formal expressions, proofs, and mathematical documentation.
Logical statements with bidirectional arrow relationships.
Research documents and scholarly articles requiring precise notation.
Specifications, algorithm descriptions, and formal documentation.
Formal specifications and notation in CS textbooks and papers.
Provide plain-language context alongside the symbol for screen readers.
💡 Best Practices
Do
- Use
⥂or⥂consistently in HTML markup - Set
<meta charset="utf-8">for reliable rendering - Use a font with good mathematical symbol coverage for academic content
- Link to Right Arrow and Right Arrow Above Almost Equal To for related symbols
- Pick one numeric reference style per project for consistency
Don’t
- Confuse ⥂ with → (plain right arrow) or ← (plain left arrow)
- Use padded Unicode notation like U+02942—the correct value is
U+2942 - Use CSS escape
\2942in HTML text nodes - Stack → and ← manually when the combined glyph ⥂ is intended
- Assume every system font renders Supplemental Arrows-B without testing
Key Takeaways
Three ways to render U+2942 in HTML and CSS (no named entity)
⥂ ⥂For CSS stylesheets, use \2942 in the content property
Unicode U+2942 — RIGHT ARROW ABOVE SHORT LEFT ARROW (⥂)
Distinct from plain arrows → / ← and other Supplemental Arrows-B glyphs
❓ Frequently Asked Questions
⥂ (hex), ⥂ (decimal), or \2942 in CSS content. There is no named entity. All three render ⥂.U+2942 (RIGHT ARROW ABOVE SHORT LEFT ARROW). Supplemental Arrows-B block (U+2900–U+297F). Hex 2942, decimal 10562.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, math operators, punctuation, and more.
8 people found this page helpful
