HTML Entity for Down Arrow With Horizontal Stroke (⤈)

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

What You'll Learn

How to display the Down Arrow With Horizontal Stroke (⤈) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2908 (DOWNWARDS ARROW WITH HORIZONTAL STROKE) in the Supplemental Arrows-B block (U+2900–U+297F)—a downward arrow with a horizontal stroke across it, often used in UI designs, navigation icons, and symbol-based links.

Render it with ⤈, ⤈, or CSS escape \2908. There is no named HTML entity. For double horizontal strokes in the Arrows block use U+21DF (⇟). For plain down use ↓ (↓).

⚡ Quick Reference — Down Arrow With Horizontal Stroke

Unicode U+2908

Supplemental Arrows-B

Hex Code ⤈

Hexadecimal reference

HTML Code ⤈

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2908
Hex code       ⤈
HTML code      ⤈
Named entity   (none)
CSS code       \2908
Related        U+21DF = Double stroke; U+2193 = Down (↓)
1

Complete HTML Example

This example demonstrates the Down Arrow With Horizontal Stroke (⤈) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2908";
  }
 </style>
</head>
<body>
<p>Down Arrow With Horizontal Stroke using Hexadecimal: &#x2908;</p>
<p>Down Arrow With Horizontal Stroke using HTML Code: &#10504;</p>
<p id="point">Down Arrow With Horizontal Stroke using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2908 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 With Horizontal Stroke (⤈) in UI and navigation contexts:

Large glyph
Navigation Show more ⤈
Expand down Section ⤈
vs double stroke ⤈ one stroke   ⇟ double (Arrows)
Numeric refs &#x2908; &#10504;

🧠 How It Works

1

Hexadecimal Code

&#x2908; uses the Unicode hexadecimal value 2908 to display the Down Arrow With Horizontal Stroke. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

Use Cases

The Down Arrow With Horizontal Stroke (⤈) is commonly used in:

💻 UI design

Distinct down-arrow icon with stroke in buttons, menus, and controls.

📜 Navigation

Expand down, show more, or scroll-down in nav bars and headers.

🔗 Symbol links

Clickable icon for download, go down, or similar with a stroke variant.

📊 Flowcharts

Downward flow with a horizontal constraint in process diagrams.

📖 Documentation

Document collapse, expand down, or navigation in design systems.

♿ Accessibility

Indicate expand/collapse or down actions in accessibility labels.

💡 Best Practices

Do

  • Use &#x2908; or &#10504; consistently in markup
  • Add aria-label when the symbol means expand or show more
  • Pair ⤈ with a label or tooltip when meaning may not be obvious
  • Use \2908 in CSS ::before / ::after for navigation icons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Expect a named entity—none exists for U+2908
  • Confuse ⤈ (one stroke, U+2908) with ⇟ (double stroke, U+21DF)
  • Confuse ⤈ with ↓ (&darr;, plain down)
  • Put CSS escape \2908 in HTML text nodes
  • Assume all fonts include Supplemental Arrows-B glyphs

Key Takeaways

1

Two HTML numeric references render ⤈

&#x2908; &#10504;
2

For CSS stylesheets, use the escape in the content property

\2908
3

Unicode U+2908 — 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 &#x2908; (hex), &#10504; (decimal), or \2908 in CSS content. There is no named entity. All produce ⤈.
U+2908 (DOWNWARDS ARROW WITH HORIZONTAL STROKE). Supplemental Arrows-B (U+2900–U+297F). Hex 2908, decimal 10504. A downward arrow with a horizontal stroke across it.
In user interface designs, navigation icons, symbol-based links, flowcharts, technical documentation, and anywhere a distinct down-arrow-with-stroke indicator is needed.
HTML references (&#10504; or &#x2908;) go in markup. The CSS escape \2908 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 &#x2908; or &#10504; 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