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

Beginner
6 min read
Updated: Sep 2026
1 example
Unicode U+2934

What Is Arrow Pointing Rightwards Then Curving Upward?

Arrow pointing rightwards then curving upward (⤴) is Unicode U+2934 in the Supplemental Arrows-B block. It is a right-then-up bend used in compact UI cues, flow sketches, and “go up” diagram hints. HTML has no standard named entity — use numeric or CSS forms (or type the character in UTF-8).

Remember
Character     ⤴
Unicode       U+2934
Hex entity    ⤴
Decimal       ⤴
Named entity  (none)
CSS escape    \2934
Not the same  → U+2192 · ⤵ U+2935 · ⤶ U+2936

All of these produce the same glyph: ⤴. Prefer typing ⤴ in UTF-8 when you can; use ⤴ / ⤴ or CSS for generated content.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character⤴HTML text (UTF-8)
Named entityNone—
Hex entity⤴HTML markup
Decimal entity⤴HTML markup
CSS escape\2934Stylesheet content

When to Use Which

SituationUse
Right then curve up⤴ or type ⤴
Right then curve down (mirror bend)⤵ (U+2935) / ⤵
Down then curve left / right⤶ / ⤷
Need an entity in HTML source⤴ or ⤴
Generated text via ::before / ::aftercontent: "\2934"

Live Preview

Right-then-up curved arrow in common study contexts.

Inline cue Back to top ⤴
Large glyph ⤴
vs. related arrows ⤴ right→up · ⤵ right→down · → right
Monospace collapse ⤴
With entities Hex: ⤴ | Decimal: ⤴

Complete HTML Example

One page that shows ⤴ with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce ⤴ in a single document (no named entity).

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Arrow Right Then Curving Up (⤴) in HTML</title>
  <style>
    #point::after {
      content: "\2934";
    }
  </style>
</head>
<body>
  <p>Curved up using Hex Code: &#x2934;</p>
  <p>Curved up using HTML Code: &#10548;</p>
  <p id="point">Curved up using CSS Entity: </p>
  <p>Typed directly: ⤴</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+2934 → &#x2934; in HTML. The browser turns it into ⤴.

2. Decimal: same code point as 10548 → &#10548;. Same result as hex.

3. CSS: use \2934 in content (not an HTML entity). #point::after appends that ⤴ after the paragraph text.

4. Typed ⤴: fine in UTF-8 source. All four lines show the same glyph.

Pitfalls & Tips

Common mistakes when working with arrow right then curving up (⤴).

Named

No &name; form

Unlike ⤵ (&cudarrr;), U+2934 has no standard named entity — use numeric references.

⤵

Not the downward bend

⤵ (U+2935) mirrors this glyph — do not swap them in diagrams.

CSS vs HTML

Do not mix escapes

\2934 belongs in CSS. &#x2934; / &#10548; belong in HTML.

a11y

Label decorative arrows

Pair icon-only cues with visible text or ARIA so the action is clear.

Fonts

Need Supplemental Arrows-B

Some UI fonts omit U+2934. Prefer fonts with solid arrow coverage.

Semicolon

End references

Always finish with ; — write &#x2934;, not &#x2934.

Browser Support

Arrow pointing rightwards then curving upward (U+2934) and its entity forms (&#x2934;, &#10548;, CSS \\2934) are supported in all mainstream browsers. Glyph availability depends on font support for Supplemental Arrows-B.

✓ Universal support

Arrow Right Then Curving Up (⤴)

Type ⤴, or encode with hex, decimal, or CSS escape — same glyph everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+2934 / entities Full support

Bottom line: Prefer a typed ⤴ or &#x2934; for normal text. Use decimal when generating markup, and \\2934 only inside CSS content.

Key Takeaways

  • Unicode: right then curving up is U+2934 (decimal 10548).
  • HTML: use &#x2934; or &#10548; (no named entity).
  • CSS: use \2934 inside content for generated text.
  • Watch out: ⤴ ≠ ⤵ ≠ →.

One line: U+2934 → &#x2934; / &#10548; / CSS \2934.

Frequently Asked Questions

Use &#x2934; (hex), &#10548; (decimal), or the CSS escape \2934 in the content property. All render ⤴. You can also paste ⤴ directly if your file is UTF-8. There is no standard named entity.
U+2934 (hex 2934, decimal 10548). Unicode names it ARROW POINTING RIGHTWARDS THEN CURVING UPWARD. It belongs to the Supplemental Arrows-B block.
No. HTML5 / WHATWG does not define a named character reference for U+2934. Prefer &#x2934;, &#10548;, or a typed ⤴ in UTF-8.
U+2935 is ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARD (⤵). It mirrors the vertical bend of U+2934 — pick the code point that matches your diagram.
HTML entities (&#10548; or &#x2934;) go in markup. The CSS escape \2934 is used in stylesheets (usually in the content property of ::before/::after). Both render ⤴.
Use it for compact “go up,” expand-up, or flow bends when a font supports Supplemental Arrows-B. Pair decorative arrows with visible text or accessible names.

Did you know?

Arrow pointing rightwards then curving upward is Unicode U+2934 (decimal 10548) in the Supplemental Arrows-B block. There is no standard named HTML entity — use &#x2934; or &#10548;. It is the up-bend twin of U+2935 (⤵).

Next: Ascending Node

Learn the HTML entity for the ascending node (☊) used in astronomy and astrology.

Next tutorial →

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