HTML Entity for Down Arrow From Bar (↧)

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

What You'll Learn

How to display the Down Arrow From Bar (↧) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+21A7 (DOWNWARDS ARROW FROM BAR) in the Arrows block (U+2190–U+21FF)—a downward arrow starting from a horizontal bar, used in flowcharts, math notation, and technical diagrams.

Render it with ↧, ↧, or CSS escape \21A7. There is no named HTML entity for this symbol, so numeric references are required. For a straight down arrow use ↓ (↓); for Enter/Return notation use ↵ (↵).

⚡ Quick Reference — Down Arrow From Bar

Unicode U+21A7

Arrows block

Hex Code ↧

Hexadecimal reference

HTML Code ↧

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21A7
Hex code       ↧
HTML code      ↧
Named entity   (none)
CSS code       \21A7
Related        U+2193 = Down arrow (↓); U+21B5 = Corner left (↵)
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\21A7";
  }
 </style>
</head>
<body>
<p>Down Arrow From Bar using Hexadecimal: &#x21A7;</p>
<p>Down Arrow From Bar using HTML Code: &#8615;</p>
<p id="point">Down Arrow From Bar using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+21A7 is widely supported in modern browsers when rendered with a font that includes Arrows:

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

👀 Live Preview

See the Down Arrow From Bar (↧) in diagram and notation contexts:

Large glyph
Flow notation Header — ↧ next step
Expand from bar Toolbar ↧ panel
vs down arrow ↧ from bar   ↓ straight down
Numeric refs &#x21A7; &#8615;

🧠 How It Works

1

Hexadecimal Code

&#x21A7; uses the Unicode hexadecimal value 21A7 to display the Down Arrow From Bar. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\21A7 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+21A7. No named HTML entity—use numeric codes in markup.

Use Cases

The Down Arrow From Bar (↧) is commonly used in:

📊 Flowcharts

Show flow from a bar or header downward in process diagrams.

∑ Math & logic

Formal proofs or notation where “down from bar” has meaning.

💻 Technical docs

State machines, diagrams, and specs that use this arrow.

▾ UI indicators

Content expanding downward from a header or toolbar in mockups.

📋 Menu notation

Represent “open downward from bar” in design documentation.

🎓 Education

Teach arrow symbols and diagramming in courses and tutorials.

💡 Best Practices

Do

  • Use &#x21A7; or &#8615; consistently in markup
  • Add aria-label when the symbol means expand down or flow from bar
  • Pair ↧ with a short label when meaning may not be obvious
  • Use \21A7 in CSS ::before / ::after for pure-CSS icons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Expect a named entity—none exists for U+21A7
  • Confuse ↧ (from bar) with ↓ (&darr;, straight down)
  • Put CSS escape \21A7 in HTML text nodes
  • Rely on the symbol alone in accessibility-critical UIs
  • Assume decorative fonts include all Arrows glyphs

Key Takeaways

1

Two HTML numeric references render ↧

&#x21A7; &#8615;
2

For CSS stylesheets, use the escape in the content property

\21A7
3

Unicode U+21A7 — DOWNWARDS ARROW FROM BAR

4

No named HTML entity—numeric codes only

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x21A7; (hex), &#8615; (decimal), or \21A7 in CSS content. There is no named entity. All produce ↧.
U+21A7 (DOWNWARDS ARROW FROM BAR). Arrows block (U+2190–U+21FF). Hex 21A7, decimal 8615. The glyph shows a downward arrow from a horizontal bar.
In flowcharts and diagrams, mathematical or logic notation, technical documentation, UI expand-from-bar indicators, and any content that needs a down-from-bar directional symbol.
HTML references (&#8615; or &#x21A7;) go in markup. The CSS escape \21A7 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. Many Arrows block characters use numeric references only. Use &#x21A7; or &#8615; 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