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

What You'll Learn
How to display the Short Right Arrow Above Left Arrow (⥄) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2944 (SHORT RIGHT ARROW ABOVE LEFT ARROW) in the Supplemental Arrows-B block (U+2900–U+297F)—a composite arrow showing a short right arrow above a left arrow, used for bidirectional navigation and flow diagrams.
Render it with ⥄, ⥄, or CSS \2944. There is no named HTML entity. Do not confuse ⥄ with Left Arrow Above Short Right Arrow U+2943 (⥃), where the arrow positions are reversed.
⚡ Quick Reference — Short Right Arrow Above Left Arrow
U+2944Supplemental Arrows-B
⥄Hexadecimal reference
⥄Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2944
Hex code ⥄
HTML code ⥄
Named entity (none)
CSS code \2944
Official name Short right arrow above left arrow
Related U+2943 = left arrow above short right (⥃)
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: "\2944";
}
</style>
</head>
<body>
<p>Arrow (hex): ⥄</p>
<p>Arrow (decimal): ⥄</p>
<p id="point">Arrow (CSS): </p>
</body>
</html>🌐 Browser Support
The Short Right Arrow Above Left Arrow (⥄) is supported in modern browsers when fonts include Supplemental Arrows-B glyphs:
👀 Live Preview
See the arrow in navigation and diagram contexts:
🧠 How It Works
Hexadecimal Code
⥄ uses Unicode hexadecimal 2944 to display the composite arrow.
Decimal HTML Code
⥄ uses decimal Unicode value 10564 for the same character.
CSS Entity
\2944 is used in CSS stylesheets in the content property of pseudo-elements for arrow markers.
Directional result
All three methods produce ⥄. Unicode U+2944 in Supplemental Arrows-B. No named entity. Next: Short Solidus Overlay.
Use Cases
The Short Right Arrow Above Left Arrow (⥄) commonly appears in:
Bidirectional controls, back/forward toggles, and menu indicators.
Process flows, workflow charts, and system architecture diagrams.
Buttons, toolbars, and interactive elements showing two-way actions.
Notation guides, chemistry, and mathematical arrow references.
Custom list bullets via ::before content.
Supplemental Arrows-B and HTML entity reference documentation.
💡 Best Practices
Do
- Use
⥄or⥄in HTML markup - Pair the symbol with visible text labels for accessibility
- Use CSS
content: "\2944"for reusable arrow components - Test rendering across browsers and fonts
- Distinguish ⥄ from ⥃ (reversed arrow layout)
Don’t
- Use padded Unicode notation like U+02944—the correct value is
U+2944 - Confuse ⥄ with ⥃ or plain left arrow ←
- Expect a named HTML entity for U+2944
- Put CSS escape
\2944in HTML text nodes - Rely on the arrow alone without context for screen readers
Key Takeaways
Three ways to render U+2944 in HTML and CSS
⥄ ⥄For CSS stylesheets, use \2944 in the content property
Unicode U+2944 — SHORT RIGHT ARROW ABOVE LEFT ARROW
No named entity—Supplemental Arrows-B character
Previous: Shamrock (☘) Next: Short Solidus Overlay
❓ Frequently Asked Questions
⥄ (hex), ⥄ (decimal), or \2944 in CSS content. There is no named HTML entity. All three render ⥄.U+2944 (SHORT RIGHT ARROW ABOVE LEFT ARROW). Supplemental Arrows-B (U+2900–U+297F). Hex 2944, decimal 10564.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, and more.
8 people found this page helpful
