HTML Entity for Arrow Pointing Rightwards Then Curving Upward (⤴)
Beginner
6 min read
Updated: Sep 2026
1 example
Unicode U+2934
Definition
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.
Right-then-up curved arrow in common study contexts.
Inline cueBack to top ⤴
Large glyph⤴
vs. related arrows⤴ right→up · ⤵ right→down · → right
Monospacecollapse ⤴
With entitiesHex: ⤴ | Decimal: ⤴
Code
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: ⤴</p>
<p>Curved up using HTML Code: ⤴</p>
<p id="point">Curved up using CSS Entity: </p>
<p>Typed directly: ⤴</p>
</body>
</html>
Curved up using Hex Code: ⤴
Curved up using HTML Code: ⤴
Curved up using CSS Entity: ⤴
Typed directly: ⤴
How It Works
1. Hex:U+2934 → ⤴ in HTML. The browser turns it into ⤴.
2. Decimal: same code point as 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 ⤵ (⤵), 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. ⤴ / ⤴ 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 ⤴, not ⤴.
Compatibility
Browser Support
Arrow pointing rightwards then curving upward (U+2934) and its entity forms (⤴, ⤴, 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 ChromeSupported
Yes
Microsoft EdgeSupported
Yes
Mozilla FirefoxSupported
Yes
Apple SafariSupported
Yes
OperaSupported
Yes
Internet ExplorerAll versions
Yes
U+2934 / entitiesFull support
Bottom line: Prefer a typed ⤴ or ⤴ for normal text. Use decimal when generating markup, and \\2934 only inside CSS content.
Remember
Key Takeaways
Unicode: right then curving up is U+2934 (decimal 10548).
HTML: use ⤴ or ⤴ (no named entity).
CSS: use \2934 inside content for generated text.
Watch out: ⤴ ≠ ⤵ ≠ →.
One line:U+2934 → ⤴ / ⤴ / CSS \2934.
Frequently Asked Questions
Use ⤴ (hex), ⤴ (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 ⤴, ⤴, 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 (⤴ or ⤴) 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 ⤴ or ⤴. It is the up-bend twin of U+2935 (⤵).