HTML Entity for Arrow Pointing Rightwards Then Curving Downward ()

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

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

Unicode U+2935

Supplemental Arrows-B

Hex Code ⤵

Hexadecimal reference

HTML Code ⤵

Decimal reference

Named Entity ⤵

Readable in source

CSS Code \2935

Use in CSS content

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2935
Hex code       ⤵
HTML code      ⤵
Named entity   ⤵
CSS code       \2935
1

Complete HTML Example

This example shows U+2935 using hexadecimal code, decimal code, the cudarrr named reference, and a CSS content escape:

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

<p>Arrow Pointing Rightwards Then Curving Downward using Hexa Decimal: &#x2935;</p>
<p>Arrow Pointing Rightwards Then Curving Downward using HTML Code: &#10549;</p>
<p>Arrow Pointing Rightwards Then Curving Downward using HTML Entity: &cudarrr;</p>
<p id="point">Arrow Pointing Rightwards Then Curving Downward using CSS Entity: </p>

</body>
</html>

The named entity is written as &cudarrr; so it displays as copyable &cudarrr; in this listing without being parsed by the surrounding page.

Try It Yourself

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

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 More below
Named ref Same arrow as &cudarrr; in UTF-8 HTML.
Contrast U+2934 The partner bend is U+2934 ⤴ (right then curving up).
Monospace U+2935 ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARD

🧠 How It Works

1

Named entity

&cudarrr; (ampersand + cudarrr + semicolon) resolves to U+2935 in HTML5 named character references.

HTML markup
2

Hexadecimal code

&#x2935; uses the Unicode hexadecimal value 2935.

HTML markup
3

Decimal HTML code

&#10549; is the decimal form (1054910 = 293516).

HTML markup
4

CSS escape

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

CSS stylesheet
=

Same visual result

All paths expose U+2935ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARD. Prefer &cudarrr; in hand-authored markup when readability matters.

Use Cases

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

🚀 Navigation UI

Submenu expand, “more below”, or dropdown 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 &cudarrr; 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 \2935 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+2935 at identical weight to emoji sets
  • Use HTML entities inside JavaScript strings (use \u2935 there instead)
  • Confuse U+2935 with U+2934 when picking up vs down curves

Key Takeaways

1

Named + numeric ways to write U+2935

&cudarrr; &#10549; &#x2935;
2

CSS content escape

\2935
3

Unicode U+2935 — ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARD

4

Supplemental Arrows-B — check font coverage

5

Pair with labels for accessible navigation patterns

❓ Frequently Asked Questions

Use &cudarrr; (named), &#x2935; (hex), &#10549; (decimal), or \2935 in CSS content. All render .
ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARD at U+2935 (decimal 10549). Block: Supplemental Arrows-B.
Yes. &cudarrr;, &#10549;, and &#x2935; are alternative spellings of the same code point in modern browsers.
U+2934 is ARROW POINTING RIGHTWARDS THEN CURVING UPWARD (⤴). U+2935 curves the same horizontal stem downward instead; pick the code point that matches your diagram.
Markup uses &cudarrr;, &#10549;, or &#x2935; 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