HTML Entity for Arrow Pointing Rightwards Then Curving Downward (⤵)

What You'll Learn
How to display ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARD (⤵, U+2935) in HTML. The URL slug uses the shorter phrase “right curving down” 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 “expand” or “more below” bends when a font supports it.
You can write ⤵ (named), ⤵, ⤵, or \2935 in CSS content. Pair decorative arrows with visible text or accessible names so the action is obvious to every user.
⚡ Quick Reference — Arrow Pointing Rightwards Then Curving Downward
U+2935Supplemental Arrows-B
⤵Hexadecimal reference
⤵Decimal reference
⤵Readable in source
\2935Use in CSS content
Name Value
──────────── ──────────
Unicode U+2935
Hex code ⤵
HTML code ⤵
Named entity ⤵
CSS code \2935Complete HTML Example
This example shows U+2935 using hexadecimal code, decimal code, the cudarrr named reference, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2935";
}
</style>
</head>
<body>
<p>Arrow Pointing Rightwards Then Curving Downward using Hexa Decimal: ⤵</p>
<p>Arrow Pointing Rightwards Then Curving Downward using HTML Code: ⤵</p>
<p>Arrow Pointing Rightwards Then Curving Downward using HTML Entity: ⤵</p>
<p id="point">Arrow Pointing Rightwards Then Curving Downward using CSS Entity: </p>
</body>
</html>The named entity is written as ⤵ so it displays as copyable ⤵ in this listing without being parsed by the surrounding page.
🌐 Browser Support
The cudarrr named reference and numeric forms for U+2935 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):
⤵ in UTF-8 HTML.🧠 How It Works
Named entity
⤵ (ampersand + cudarrr + semicolon) resolves to U+2935 in HTML5 named character references.
Hexadecimal code
⤵ uses the Unicode hexadecimal value 2935.
Decimal HTML code
⤵ is the decimal form (1054910 = 293516).
CSS escape
\2935 in content emits U+2935 from a stylesheet.
Same visual result
All paths expose U+2935 — ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARD. Prefer ⤵ in hand-authored markup when readability matters.
Use Cases
Use U+2935 when the bend direction matches your UI or diagram language:
Submenu expand, “more below”, or dropdown 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 one numeric style 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
\2935only 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+2935 at identical weight to emoji sets
- Use HTML entities inside JavaScript strings (use
\u2935there instead) - Confuse
U+2935withU+2934when picking up vs down curves
Key Takeaways
Named + numeric ways to write U+2935
⤵ ⤵ ⤵CSS content escape
\2935Unicode U+2935 — ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARD
Supplemental Arrows-B — check font coverage
Pair with labels for accessible navigation patterns
❓ Frequently Asked Questions
⤵ (named), ⤵ (hex), ⤵ (decimal), or \2935 in CSS content. All render ⤵.U+2935 (decimal 10549). Block: Supplemental Arrows-B.⤵, ⤵, and ⤵ are alternative spellings of the same code point in modern browsers.⤵, ⤵, 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
