HTML Entity for Right Arrow Plus Below (⥅)

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

What You'll Learn

How to display the Right Arrow Plus Below (⥅) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+2945 (RIGHTWARDS ARROW WITH PLUS BELOW) in the Supplemental Arrows-B block (U+2900–U+297F)—a rightward arrow with a plus sign below, used for directional icons, add/create actions, and UI controls.

Render it with ⥅ (named), ⥅, ⥅, or CSS \2945. Related: U+2946 (⥆, left arrow plus below—no named entity), U+21C4 (⇄, right arrow over left / ⇄). Do not confuse ⥅ with plain right arrow → or plus sign + alone.

⚡ Quick Reference — Right Arrow Plus Below

Unicode U+2945

Supplemental Arrows-B (U+2900–U+297F)

Hex Code ⥅

Hexadecimal reference

HTML Code ⥅

Decimal reference

Named Entity ⥅

Standard HTML entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2945
Hex code       ⥅
HTML code      ⥅
Named entity   ⥅
CSS code       \2945
Meaning        Rightwards arrow with plus below
Related        U+2946 = left arrow plus below (⥆)
               U+21C4 = right arrow over left (⇄, ⇄)
Block          Supplemental Arrows-B (U+2900–U+297F)
1

Complete HTML Example

A simple example showing ⥅ using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2945";
  }
 </style>
</head>
<body>
<p>Hex: &#x2945;</p>
<p>Decimal: &#10565;</p>
<p>Named: &rarrpl;</p>
<p id="point">CSS: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2945 renders in modern browsers when the font includes Supplemental Arrows-B glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Right Arrow Plus Below (⥅) in common contexts:

Add action Add item ⥅
Navigation List ⥅ New entry
Large glyph
Arrow comparison ⥆ ⥅ →
Entity refs &rarrpl; &#x2945; &#10565; \2945

🧠 How It Works

1

Named HTML Entity

&rarrpl; is the named entity for U+2945 (rightwards arrow with plus below). It is the most readable option in HTML source.

HTML markup
2

Hexadecimal Code

&#x2945; uses the Unicode hexadecimal value 2945.

HTML markup
3

Decimal HTML Code

&#10565; uses the decimal Unicode value 10565 for the same character.

HTML markup
4

CSS Entity

\2945 is used in CSS stylesheets in the content property of pseudo-elements.

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+2945 in the Supplemental Arrows-B block. Previous: Right Arrow Over Left Arrow (⇄). Next: Right Arrow Small Circle (⇴).

Use Cases

The Right Arrow Plus Below (⥅) is commonly used in:

➕ Add actions

Buttons and controls that combine forward direction with create/add.

🎨 UI design

Directional icons in dashboards, toolbars, and action menus.

🧭 Navigation

Menus indicating proceed-and-add or next-with-create flows.

📝 Technical docs

Notation for operations that append or extend in a forward direction.

🛠 Diagrams

Flowcharts showing forward flow with an additive step below.

♿ Accessibility

Pair ⥅ with plain language (e.g. “add next”) for screen readers.

💡 Best Practices

Do

  • Prefer &rarrpl; in HTML for readable source markup
  • Use ⥅ when direction and add/create meaning belong together
  • Set <meta charset="utf-8">
  • Link to Left Arrow Plus Below for the paired ⥆ symbol
  • Keep one entity style consistent across your project
  • Use CSS \2945 for decorative icons in pseudo-elements

Don’t

  • Confuse ⥅ (U+2945) with ⥆ (U+2946) or plain →
  • Use padded Unicode notation like U+02945—the correct value is U+2945
  • Use CSS escape \2945 in HTML text nodes
  • Substitute → + when the combined glyph ⥅ is intended
  • Assume all fonts render Supplemental Arrows-B glyphs correctly

Key Takeaways

1

Four ways to render U+2945 in HTML and CSS

&rarrpl; &#x2945; &#10565;
2

For CSS, use \2945 in the content property

3

Unicode U+2945 — RIGHTWARDS ARROW WITH PLUS BELOW (⥅)

4

Paired with left plus-below ⥆; has named entity &rarrpl; (left has none)

❓ Frequently Asked Questions

Use &rarrpl; (named), &#x2945; (hex), &#10565; (decimal), or \2945 in CSS content. All four render ⥅.
U+2945 (RIGHTWARDS ARROW WITH PLUS BELOW). Supplemental Arrows-B block (U+2900–U+297F). Hex 2945, decimal 10565.
For directional icons combined with add/create actions, navigation with plus indicators, UI buttons, and technical notation requiring a right arrow with plus below.
&rarrpl; is more readable in source markup; &#10565; and &#x2945; are numeric alternatives. All render ⥅ in modern browsers.
Named and numeric HTML references (&rarrpl;, &#10565;, &#x2945;) go in markup. The CSS escape \2945 is used in stylesheets, typically on ::before or ::after. Both render ⥅.

Explore More HTML Entities!

Discover 1500+ HTML character references — arrows, symbols, math operators, 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