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

What You'll Learn
How to display the Left Arrow Above Short Right Arrow (⥃) in HTML using hexadecimal, decimal, and CSS escape methods. This composite symbol is U+2943 (LEFTWARDS ARROW ABOVE SHORT RIGHTWARDS ARROW) in the Supplemental Arrows-B block (U+2900–U+297F)—a left arrow stacked above a short right arrow, used in technical notation, diagrams, chemistry, and bidirectional or opposing flow.
Render it with ⥃, ⥃, or CSS \2943. There is no named HTML entity. Related: U+2190 (←, simple left arrow), U+2192 (→, simple right arrow).
⚡ Quick Reference — Left Arrow Above Short Right Arrow
U+2943Supplemental Arrows-B
⥃Hexadecimal reference
⥃Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2943
Hex code ⥃
HTML code ⥃
Named entity (none)
CSS code \2943
Meaning Left arrow above short right arrow
Related U+2190 = left arrow (←)
U+2192 = right arrow (→)Complete HTML Example
A simple example showing the Left Arrow Above Short Right Arrow (⥃) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2943";
}
</style>
</head>
<body>
<p>Symbol using Hexadecimal: ⥃</p>
<p>Symbol using HTML Code: ⥃</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Left Arrow Above Short Right Arrow (⥃) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
Left Arrow Above Short Right Arrow (⥃) in context, compared with simple arrows:
🧠 How It Works
Hexadecimal Code
⥃ uses the Unicode hexadecimal value 2943 to display the composite arrow. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥃ uses the decimal Unicode value 10563 to display the same character.
CSS Entity
\2943 is used in CSS stylesheets in the content property of pseudo-elements like ::after for diagram and flow notation.
Same visual result
All three methods produce ⥃. Unicode U+2943 is in Supplemental Arrows-B. Next: Left Arrow Above Tilde Operator.
Use Cases
The Left Arrow Above Short Right Arrow (⥃) is commonly used in:
Bidirectional or opposing relations in equations, proofs, and technical documentation.
Composite direction in process diagrams—left above, short right below.
Reaction schemes or equilibrium notation where composite arrows are needed.
Swap, exchange, or bidirectional transfer in app interfaces and controls.
Data flow, API behavior, or state transitions using composite arrows.
Teach notation involving left/right or opposing directional relationships.
💡 Best Practices
Do
- Pair ⥃ with explanatory text or
aria-labelfor accessibility - Use fonts that support Supplemental Arrows-B (U+2943)
- Set
<meta charset="utf-8"> - Add a legend or caption in technical diagrams
- Keep one numeric style (hex or decimal) per project
- Test glyph rendering across browsers and fonts
Don’t
- Expect a named HTML entity for U+2943
- Use CSS
\2943inside HTML text nodes - Confuse ⥃ with simple ← or → arrows
- Rely on the symbol alone without context in critical UI
- Assume legacy systems render Supplemental Arrows-B without testing
Key Takeaways
Two HTML numeric references plus CSS for U+2943
⥃ ⥃For CSS, use \2943 in the content property
Unicode U+2943 — LEFTWARDS ARROW ABOVE SHORT RIGHTWARDS ARROW
Supplemental Arrows-B block (U+2900–U+297F)
Previous: Left Arrow (←) Next: Left Arrow Above Tilde Operator
❓ Frequently Asked Questions
⥃ (hex), ⥃ (decimal), or \2943 in CSS content. There is no named entity. All three methods render ⥃ correctly.U+2943 (LEFTWARDS ARROW ABOVE SHORT RIGHTWARDS ARROW). Supplemental Arrows-B block (U+2900–U+297F). Hex 2943, decimal 10563. Combines a left arrow above a short right arrow.⥃ or ⥃) go in markup. The CSS escape \2943 is used in stylesheets, typically on ::before or ::after. Both produce ⥃.⥃) or decimal (⥃) codes. That is standard for such symbols in HTML.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
