HTML Entity for Down Arrow (↓)

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

What You'll Learn

How to display the Down Arrow (↓) in HTML using hexadecimal, decimal, the named entity ↓, and CSS escape methods. This character is U+2193 (DOWNWARDS ARROW) in the Arrows block (U+2190–U+21FF)—used in dropdowns, navigation, sort indicators, and UI direction cues.

Render it with ↓, ↓, ↓, or CSS escape \2193. For up arrow use ↑ (↑, U+2191). The down-pointing triangle (▾, U+25BE) is a different glyph often used for compact dropdowns.

⚡ Quick Reference — Down Arrow

Unicode U+2193

Arrows block

Hex Code ↓

Hexadecimal reference

HTML Code ↓

Decimal reference

Named Entity ↓

HTML5 named entity for U+2193

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2193
Hex code       ↓
HTML code      ↓
Named entity   ↓
CSS code       \2193
Related        U+2191 = Up arrow (↑); U+25BE = Down triangle
1

Complete HTML Example

This example demonstrates the Down Arrow (↓) using hexadecimal code, decimal HTML code, the named entity ↓, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2193";
  }
 </style>
</head>
<body>
<p>Down Arrow using Hexadecimal: &#x2193;</p>
<p>Down Arrow using HTML Code: &#8595;</p>
<p>Down Arrow using HTML Entity: &darr;</p>
<p id="point">Down Arrow using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2193 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 (↓) in UI and navigation contexts:

Large glyph
Dropdown Select option ↓
Sort descending Price ↓
vs up arrow ↓ down   ↑ up
Named entity &darr; → ↓
All HTML refs &#x2193; &#8595; &darr;

🧠 How It Works

1

Hexadecimal Code

&#x2193; uses the Unicode hexadecimal value 2193 to display the Down Arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named HTML Entity

&darr; is the HTML5 named entity for U+2193. It is easy to read in source and resolves to the same character (↓).

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce: . Unicode U+2193. Up arrow: &uarr; (↑). Not the same as ▾ (down-pointing triangle).

Use Cases

The Down Arrow (↓) is commonly used in:

▾ Dropdown menus

Indicate expandable or dropdown controls in navigation and form selects.

📜 Scroll & navigation

Show scroll direction, “see more” cues, or next-section indicators.

📊 Sort indicators

Display sort descending in table headers and data grids.

📋 Step-by-step

Guide users through sequential steps or vertical flows.

⌨ Keyboard shortcuts

Represent the down arrow key in shortcut documentation.

📂 Accordions

Indicate expand/collapse or “show more” in accordions and lists.

💡 Best Practices

Do

  • Use &darr; for readable markup, or &#x2193; / &#8595;
  • Add aria-label when the arrow conveys meaning (e.g. expand, sort descending)
  • Pair arrows with labels in forms and sortable table headers
  • Use \2193 in CSS ::before / ::after for dropdown chevrons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse &darr; (↓) with ▾ (down-pointing triangle)
  • Confuse ↓ with ↑ (&uarr;, up arrow)
  • Put CSS escape \2193 in HTML text nodes
  • Rely on the symbol alone without context in accessibility-critical UIs
  • Assume decorative fonts include all Arrows glyphs

Key Takeaways

1

Named entity available: &darr;

&#x2193; &#8595;
2

For CSS stylesheets, use the escape in the content property

\2193
3

Unicode U+2193 DOWNWARDS ARROW

4

Up arrow: ↑ via &uarr; (U+2191)

5

Four methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x2193; (hex), &#8595; (decimal), &darr; (named entity), or \2193 in CSS content. All produce ↓.
U+2193 (DOWNWARDS ARROW). Arrows block (U+2190–U+21FF). Hex 2193, decimal 8595.
In dropdown menus, scroll and navigation cues, sort descending indicators, step-by-step instructions, keyboard shortcut documentation, accordions, and any UI that needs a downward direction cue.
HTML references (&#8595;, &#x2193;, or &darr;) go in markup. The CSS escape \2193 is used in stylesheets, typically in the content property of pseudo-elements.
&darr; is easier to read in source than &#8595; or &#x2193;, but all produce ↓. The named entity is part of the HTML5 entity set for arrows.
No. &darr; is the Down Arrow (↓, U+2193). The down-pointing triangle (▾, U+25BE) is a different character often used for dropdowns. Use ↓ for a classic arrow; ▾ for a compact indicator.

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