HTML Entity for Arrow Pointing Rightwards Then Curving Upward (⤴)

What You'll Learn
How to display ARROW POINTING RIGHTWARDS THEN CURVING UPWARD (⤴, U+2934) in HTML. The URL slug uses the shorter phrase “right curving up” for legacy links; prose here follows Unicode’s full name. The glyph appears in the Supplemental Arrows-B block and is handy for compact UI arrows, flow sketches, and collapse, return, or back-to-top style bends when a font supports it.
You can write ⤴ or ⤴ in markup, or \2934 in CSS content. There is no standard named HTML character reference for this code point. Pair decorative arrows with visible text or accessible names so the action is obvious to every user.
⚡ Quick Reference — Arrow Pointing Rightwards Then Curving Upward
U+2934Supplemental Arrows-B
⤴Hexadecimal reference
⤴Decimal reference
—No HTML5 named reference
\2934Use in CSS content
Name Value
──────────── ──────────
Unicode U+2934
Hex code ⤴
HTML code ⤴
Named entity — (none)
CSS code \2934Complete HTML Example
This example shows U+2934 using hexadecimal code, decimal code, and a CSS content escape (no named HTML entity exists for this character):
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2934";
}
</style>
</head>
<body>
<p>Arrow Pointing Rightwards Then Curving Upward using Hexa Decimal: ⤴</p>
<p>Arrow Pointing Rightwards Then Curving Upward using HTML Code: ⤴</p>
<p id="point">Arrow Pointing Rightwards Then Curving Upward using CSS Entity: </p>
</body>
</html>HTML5 does not define a named character reference for U+2934; use the numeric forms above or the CSS escape in stylesheets.
🌐 Browser Support
Numeric character references and the CSS escape for U+2934 are supported in all modern browsers. Final appearance depends on font coverage for Supplemental Arrows-B:
👀 Live Preview
Inline samples (always add text or aria-label for real controls):
⤴ or UTF-8 text in HTML.🧠 How It Works
Hexadecimal code
⤴ uses the Unicode hexadecimal value 2934.
Decimal HTML code
⤴ is the decimal form (1054810 = 293416).
CSS escape
\2934 in content emits U+2934 from a stylesheet.
Same visual result
All paths expose U+2934 — ARROW POINTING RIGHTWARDS THEN CURVING UPWARD. Prefer ⤴ or ⤴ in hand-authored markup for clarity.
Use Cases
Use U+2934 when the bend direction matches your UI or diagram language:
Collapse, return, or “back to top” affordances next to text labels.
Lightweight process notes where a single Unicode arrow is clearer than an asset.
Gesture or keyboard diagrams in help pages and README files.
Icon slots in toolbars when your icon font includes Supplemental Arrows-B.
Directional callouts in specs that stay plain HTML.
Direction symbols that are not text-direction specific when paired with words.
Never rely on the glyph alone for actions; expose the purpose in text or ARIA.
💡 Best Practices
Do
- Prefer
⤴or⤴consistently within a document - Pick system or web fonts known to draw Supplemental Arrows-B clearly
- Combine the arrow with visible text or an accessible name on controls
- Use
\2934only inside CSScontent, not raw HTML text - Test at small sizes; substitute an SVG icon if the stroke collapses
Don’t
- Use icon-only arrows for critical actions without
aria-labelor adjacent text - Assume every theme font includes U+2934 at identical weight to emoji sets
- Use HTML entities inside JavaScript strings (use
\u2934there instead) - Confuse
U+2934withU+2935when picking up vs down curves
Key Takeaways
Hex + decimal numeric references for U+2934
⤴ ⤴CSS content escape
\2934Unicode U+2934 — ARROW POINTING RIGHTWARDS THEN CURVING UPWARD
Supplemental Arrows-B — check font coverage
Pair with labels for accessible navigation patterns
❓ Frequently Asked Questions
⤴ (hex), ⤴ (decimal), or \2934 in CSS content. All render ⤴. There is no standard named HTML entity for this character.U+2934 (decimal 10548). Block: Supplemental Arrows-B.⤴, ⤴, or the CSS escape \2934 in content.⤴ or ⤴ in HTML. CSS uses backslash hex escapes inside content rules. Same glyph, different syntax layer.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
