HTML Entity for Right Arrow With Dotted Stem (⤑)

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

What You'll Learn

How to display the Right Arrow With Dotted Stem (⤑) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+2911 (RIGHTWARDS ARROW WITH DOTTED STEM) in the Supplemental Arrows-B block (U+2900–U+297F)—a rightward arrow with a dotted stem, used for navigation icons, UI design, graphic elements, and distinctive directional indicators.

Render it with ⤑ (named), ⤑, ⤑, or CSS \2911. Related: U+2910 (⤐, left arrow with dotted stem), U+21B4 (↴, right arrow with corner down). Do not confuse ⤑ with plain →.

⚡ Quick Reference — Right Arrow With Dotted Stem

Unicode U+2911

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

Hex Code ⤑

Hexadecimal reference

HTML Code ⤑

Decimal reference

Named Entity ⤑

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2911
Hex code       ⤑
HTML code      ⤑
Named entity   ⤑
CSS code       \2911
Meaning        Rightwards arrow with dotted stem
Related        U+2910 = left arrow with dotted stem (⤐)
               U+21B4 = right arrow corner down (↴)
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: "\2911";
  }
 </style>
</head>
<body>
<p>Hex: &#x2911;</p>
<p>Decimal: &#10513;</p>
<p>Named: &DDotrahd;</p>
<p id="point">CSS: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2911 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 With Dotted Stem (⤑) in common contexts:

Navigation Next ⤑
Continue Proceed ⤑
Large glyph
Arrow comparison ⤐ ⤑ →
Entity refs &DDotrahd; &#x2911; &#10513; \2911

🧠 How It Works

1

Named HTML Entity

&DDotrahd; is the named entity for the Right Arrow With Dotted Stem. It is easy to read in navigation and UI markup.

HTML markup
2

Hexadecimal Code

&#x2911; uses the Unicode hexadecimal value 2911. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

&#10513; uses the decimal Unicode value 10513 for the same symbol.

HTML markup
4

CSS Entity

\2911 is used in CSS stylesheets in the content property of pseudo-elements like ::after.

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+2911 in the Supplemental Arrows-B block. Previous: Right Arrow With Corner Down (↴). Next: Right Arrowhead Above (U+0350).

Use Cases

The Right Arrow With Dotted Stem (⤑) is commonly used in:

🧭 Navigation icons

Menus and breadcrumbs with a distinctive dotted-stem arrow style.

🛠 UI design

Buttons, links, and controls needing unique directional indicators.

🎨 Graphic elements

Designs and creative content with visual variety in arrow styling.

🗺 Directional indicators

Wayfinding and guides showing movement with a dotted stem.

💻 Decorative content

Interfaces that differentiate dotted arrows from solid arrows.

♿ Accessibility

Pair ⤑ with plain language (e.g. “next” or “continue”) for screen readers.

💡 Best Practices

Do

  • Prefer &DDotrahd; for readable navigation and UI markup
  • Use &#x2911; or &#10513; when named entities are unavailable
  • Set <meta charset="utf-8">
  • Keep entity style consistent across your project
  • Use CSS \2911 for decorative arrows in pseudo-elements
  • Test rendering across browsers and font stacks

Don’t

  • Confuse ⤑ (U+2911) with ⤐ (U+2910) or plain →
  • Use padded Unicode notation like U+02911—the correct value is U+2911
  • Use CSS escape \2911 in HTML text nodes
  • Use padded CSS like \02911—prefer \2911
  • Assume all fonts render Supplemental Arrows-B glyphs correctly

Key Takeaways

1

Four ways to render U+2911 in HTML and CSS

&DDotrahd; &#x2911;
2

For CSS, use \2911 in the content property

3

Unicode U+2911 — RIGHTWARDS ARROW WITH DOTTED STEM (⤑)

4

Named entity &DDotrahd; is the most readable option

❓ Frequently Asked Questions

Use &DDotrahd; (named), &#x2911; (hex), &#10513; (decimal), or \2911 in CSS content. All four render ⤑.
U+2911 (RIGHTWARDS ARROW WITH DOTTED STEM). Supplemental Arrows-B block (U+2900–U+297F). Hex 2911, decimal 10513.
For navigation icons, UI design, graphic elements, directional indicators, and content that needs a distinctive dotted arrow to indicate direction or movement.
&DDotrahd; is more readable and easier to remember. Numeric codes (&#10513;, &#x2911;) work everywhere. Both render ⤑.
HTML references (&DDotrahd;, &#10513;, &#x2911;) go in markup. The CSS escape \2911 is used in stylesheets 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