HTML Entity for Arrow Pointing Downwards Then Curving Rightward (⤷)

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

What Is Arrow Pointing Downwards Then Curving Rightward?

Arrow pointing downwards then curving rightward (⤷) is Unicode U+2937 in the Supplemental Arrows-B block. It is a down-then-right bend used in compact UI cues, flow sketches, and “continue”-style diagrams. HTML provides the named entity ⤷.

Remember
Character     ⤷
Unicode       U+2937
Hex entity    ⤷
Decimal       ⤷
Named entity  ⤷
CSS escape    \2937
Not the same  ↓ U+2193 · ⤶ U+2936 · ⤵ U+2935

All of these produce the same glyph: ⤷. Prefer ⤷ in hand-written HTML; type ⤷ in UTF-8 when you can; use numeric or CSS forms for generated content.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character⤷HTML text (UTF-8)
Named entity⤷HTML markup (preferred name)
Hex entity⤷HTML markup
Decimal entity⤷HTML markup
CSS escape\2937Stylesheet content

When to Use Which

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

Live Preview

Curved rightward arrow in common study contexts.

Inline cue ⤷ Continue below
Large glyph ⤷
vs. related arrows ⤷ right bend · ⤶ left bend · ⤵ right→down
Monospace next ⤷
With entities Named: ⤷ | Hex: ⤷ | Decimal: ⤷

Complete HTML Example

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

Hex + Decimal + Named + CSS + Typed

Five ways to produce ⤷ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Arrow Down Then Curving Right (⤷) in HTML</title>
  <style>
    #point::after {
      content: "\2937";
    }
  </style>
</head>
<body>
  <p>Curved right using Hex Code: &#x2937;</p>
  <p>Curved right using HTML Code: &#10551;</p>
  <p>Curved right using Named Entity: &rdca;</p>
  <p id="point">Curved right using CSS Entity: </p>
  <p>Typed directly: ⤷</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+2937 → &#x2937; in HTML. The browser turns it into ⤷.

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

3. Named: &rdca; is the standard HTML name for U+2937 — clear in source.

4. CSS: use \2937 in content (not an HTML entity). #point::after appends that ⤷ after the paragraph text.

5. Typed ⤷: fine in UTF-8 source. All five lines show the same glyph.

Pitfalls & Tips

Common mistakes when working with arrow down then curving right (⤷).

⤶

Not the leftward bend

⤶ (U+2936) / &ldca; mirrors this glyph — do not swap them in diagrams.

⤵

Not right-then-down

⤵ (U+2935) is a different Supplemental Arrows-B operator.

CSS vs HTML

Do not mix escapes

\2937 belongs in CSS. &rdca; / &#x2937; 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+2937. Prefer fonts with solid arrow coverage.

Semicolon

End references

Always finish with ; — write &rdca;, not &rdca.

Browser Support

Arrow pointing downwards then curving rightward (U+2937) and its entity forms (&rdca;, &#x2937;, &#10551;, CSS \\2937) are supported in all mainstream browsers. Glyph availability depends on font support for Supplemental Arrows-B.

✓ Universal support

Arrow Down Then Curving Right (⤷)

Type ⤷, or encode with named, 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+2937 / entities Full support

Bottom line: Prefer &rdca; or a typed ⤷ for normal text. Use numeric forms when generating markup, and \\2937 only inside CSS content.

Key Takeaways

  • Unicode: down then curving right is U+2937 (decimal 10551).
  • HTML: prefer &rdca; (or &#x2937; / &#10551;).
  • CSS: use \2937 inside content for generated text.
  • Watch out: ⤷ ≠ ⤶ ≠ ⤵ ≠ ↓.

One line: U+2937 → &rdca; / &#x2937; / &#10551; / CSS \2937.

Frequently Asked Questions

Use &#x2937; (hex), &#10551; (decimal), &rdca; (named), or the CSS escape \2937 in the content property. All render ⤷. You can also paste ⤷ directly if your file is UTF-8.
U+2937 (hex 2937, decimal 10551). Unicode names it ARROW POINTING DOWNWARDS THEN CURVING RIGHTWARD. It belongs to the Supplemental Arrows-B block.
Yes. &rdca; maps to U+2937. Prefer it in hand-written HTML; numeric forms are useful in generated markup.
U+2936 is ARROW POINTING DOWNWARDS THEN CURVING LEFTWARD (⤶). It mirrors the bend of U+2937 — pick the code point that matches your diagram.
No. ⤵ is U+2935 (arrow pointing rightwards then curving downward). ⤷ is U+2937 (down then curving right). Different code points.
HTML entities (&#10551;, &#x2937;, or &rdca;) go in markup. The CSS escape \2937 is used in stylesheets (usually in the content property of ::before/::after). Both render ⤷.

Did you know?

Arrow pointing downwards then curving rightward is Unicode U+2937 (decimal 10551) in the Supplemental Arrows-B block. HTML provides &rdca; for ⤷. It is the right-bend twin of U+2936 (⤶) — not a plain down arrow, and not ⤵ (U+2935).

Next: Arrow Pointing Rightwards Then Curving Downward

Learn the HTML entity for the curved arrow (⤵) used in diagrams and UI cues.

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