HTML Entity for Down Arrow To Bar (⤓)

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

What You'll Learn

How to display the Down Arrow To Bar (⤓) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2913 (DOWNWARDS ARROW TO BAR) in the Supplemental Arrows-B block (U+2900–U+297F)—a downward arrow meeting a horizontal bar, often used for dropdown indicators, navigation cues, and UI elements.

Render it with ⤓, ⤓, or CSS escape \2913. There is no named HTML entity for this symbol. For down from a bar use U+21A7 (↧); for straight down use ↓ (↓).

⚡ Quick Reference — Down Arrow To Bar

Unicode U+2913

Supplemental Arrows-B

Hex Code ⤓

Hexadecimal reference

HTML Code ⤓

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2913
Hex code       ⤓
HTML code      ⤓
Named entity   (none)
CSS code       \2913
Related        U+21A7 = From bar; U+2193 = Down (↓)
1

Complete HTML Example

This example demonstrates the Down Arrow To Bar (⤓) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2913";
  }
 </style>
</head>
<body>
<p>Down Arrow To Bar using Hexadecimal: &#x2913;</p>
<p>Down Arrow To Bar using HTML Code: &#10515;</p>
<p id="point">Down Arrow To Bar using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2913 is supported in modern browsers when rendered with a font that includes Supplemental Arrows-B:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Down Arrow To Bar (⤓) in dropdown and navigation contexts:

Large glyph
Dropdown Options ⤓
Expand to menu Menu ⤓
vs from bar ⤓ to bar   ↧ from bar
Numeric refs &#x2913; &#10515;

🧠 How It Works

1

Hexadecimal Code

&#x2913; uses the Unicode hexadecimal value 2913 to display the Down Arrow To Bar. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#10515; uses the decimal Unicode value 10515 to display the same character.

HTML markup
3

CSS Entity

\2913 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+2913. No named HTML entity—use numeric codes in markup.

Use Cases

The Down Arrow To Bar (⤓) is commonly used in:

▾ Dropdowns

Indicate expandable dropdowns or select controls (arrow down to a bar).

📜 Navigation

Show expand down or open menu in headers, nav bars, and accordions.

💻 UI icons

Download-to-bar, show more, or similar actions in interfaces.

📊 Flowcharts

Flow downward to a horizontal process or bar in diagrams.

📖 Documentation

Document dropdown or expand-to-bar behavior in design systems.

♿ Accessibility

Indicate expand/collapse or menu open in accessibility hints.

💡 Best Practices

Do

  • Use &#x2913; or &#10515; consistently in markup
  • Add aria-label when the symbol means open dropdown or expand menu
  • Pair ⤓ with a label or tooltip when meaning may not be obvious
  • Use \2913 in CSS ::before / ::after for dropdown icons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Expect a named entity—none exists for U+2913
  • Confuse ⤓ (to bar) with ↧ (from bar, U+21A7)
  • Confuse ⤓ with ↓ (&darr;, straight down)
  • Put CSS escape \2913 in HTML text nodes
  • Assume all fonts include Supplemental Arrows-B glyphs

Key Takeaways

1

Two HTML numeric references render ⤓

&#x2913; &#10515;
2

For CSS stylesheets, use the escape in the content property

\2913
3

Unicode U+2913 — Supplemental Arrows-B block

4

No named HTML entity—numeric codes only

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x2913; (hex), &#10515; (decimal), or \2913 in CSS content. There is no named entity. All produce ⤓.
U+2913 (DOWNWARDS ARROW TO BAR). Supplemental Arrows-B (U+2900–U+297F). Hex 2913, decimal 10515. The glyph shows a downward arrow meeting a horizontal bar.
For dropdown menus and select controls, navigation indicators (expand down to a bar or menu), UI icons, flowcharts and diagrams, and accessibility or keyboard cues for expand or open menu.
HTML references (&#10515; or &#x2913;) go in markup. The CSS escape \2913 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named entities cover common ASCII, Latin-1, and frequently used symbols. Supplemental Arrows-B characters use numeric references only. Use &#x2913; or &#10515; in HTML.

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