HTML Entity for Arrow Pointing Rightwards Then Curving Upward ()

Beginner
⏱️ 5 min read
📚 Updated: May 2026
🎯 1 Code Example
Unicode U+2934

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

Unicode U+2934

Supplemental Arrows-B

Hex Code ⤴

Hexadecimal reference

HTML Code ⤴

Decimal reference

Named Entity

No HTML5 named reference

CSS Code \2934

Use in CSS content

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2934
Hex code       ⤴
HTML code      ⤴
Named entity   — (none)
CSS code       \2934
1

Complete 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):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2934";
  }
 </style>
</head>
<body>

<p>Arrow Pointing Rightwards Then Curving Upward using Hexa Decimal: &#x2934;</p>
<p>Arrow Pointing Rightwards Then Curving Upward using HTML Code: &#10548;</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.

Try It Yourself

🌐 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:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

Inline samples (always add text or aria-label for real controls):

Isolated glyph
With label Back to section
Numeric ref Same glyph as &#x2934; or UTF-8 text in HTML.
Contrast U+2935 The partner bend is U+2935 ⤵ (right then curving down).
Monospace U+2934 ARROW POINTING RIGHTWARDS THEN CURVING UPWARD

🧠 How It Works

1

Hexadecimal code

&#x2934; uses the Unicode hexadecimal value 2934.

HTML markup
2

Decimal HTML code

&#10548; is the decimal form (1054810 = 293416).

HTML markup
3

CSS escape

\2934 in content emits U+2934 from a stylesheet.

CSS stylesheet
=

Same visual result

All paths expose U+2934ARROW POINTING RIGHTWARDS THEN CURVING UPWARD. Prefer &#x2934; or &#10548; in hand-authored markup for clarity.

Use Cases

Use U+2934 when the bend direction matches your UI or diagram language:

🚀 Navigation UI

Collapse, return, or “back to top” affordances next to text labels.

📊 Flow hints

Lightweight process notes where a single Unicode arrow is clearer than an asset.

⌨️ Interaction docs

Gesture or keyboard diagrams in help pages and README files.

📝 Buttons

Icon slots in toolbars when your icon font includes Supplemental Arrows-B.

📚 Technical writing

Directional callouts in specs that stay plain HTML.

🌐 Multilingual UI

Direction symbols that are not text-direction specific when paired with words.

♿ Accessibility

Never rely on the glyph alone for actions; expose the purpose in text or ARIA.

💡 Best Practices

Do

  • Prefer &#x2934; or &#10548; 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 \2934 only inside CSS content, 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-label or adjacent text
  • Assume every theme font includes U+2934 at identical weight to emoji sets
  • Use HTML entities inside JavaScript strings (use \u2934 there instead)
  • Confuse U+2934 with U+2935 when picking up vs down curves

Key Takeaways

1

Hex + decimal numeric references for U+2934

&#10548; &#x2934;
2

CSS content escape

\2934
3

Unicode U+2934 — ARROW POINTING RIGHTWARDS THEN CURVING UPWARD

4

Supplemental Arrows-B — check font coverage

5

Pair with labels for accessible navigation patterns

❓ Frequently Asked Questions

Use &#x2934; (hex), &#10548; (decimal), or \2934 in CSS content. All render . There is no standard named HTML entity for this character.
ARROW POINTING RIGHTWARDS THEN CURVING UPWARD at U+2934 (decimal 10548). Block: Supplemental Arrows-B.
No. HTML5 does not define a named character reference for this arrow. Use &#x2934;, &#10548;, or the CSS escape \2934 in content.
U+2935 is ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARD (⤵). U+2934 curves the same horizontal stem upward instead; pick the code point that matches your diagram.
Markup uses &#10548; or &#x2934; 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.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful