HTML Entity for Up Down Arrow Base (↨)

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

What You'll Learn

How to display the Up Down Arrow Base (↨) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+21A8 (UP DOWN ARROW WITH BASE) in the Arrows block (U+2190–U+21FF)—a bidirectional vertical arrow with a horizontal base line, used for navigation, UI controls, and expand/collapse indicators.

Render it with ↨, ↨, or CSS escape \21A8. There is no named HTML entity. Compare ↕ (up down arrow, U+2195, ↕) for the plain vertical bidirectional arrow without a base.

⚡ Quick Reference — Up Down Arrow Base

Unicode U+21A8

Arrows block

Hex Code ↨

Hexadecimal reference

HTML Code ↨

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21A8
Hex code       ↨
HTML code      ↨
Named entity   (none)
CSS code       \21A8
Official name  UP DOWN ARROW WITH BASE
Related        U+2195 = Up down arrow (↕)
Block          Arrows (U+2190–U+21FF)
1

Complete HTML Example

A simple example showing ↨ using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\21A8";
  }
 </style>
</head>
<body>
<p>Up Down Base (hex): &#x21A8;</p>
<p>Up Down Base (decimal): &#8616;</p>
<p id="point">Up Down Base (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+21A8 is 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 Up Down Arrow Base (↨) in navigation and UI contexts:

Large glyph
Expand / collapse Toggle ↨
Vertical resize Resize ↨
vs up down arrow ↨ with base   ↕ plain
Numeric refs &#x21A8; &#8616;

🧠 How It Works

1

Hexadecimal Code

&#x21A8; uses the Unicode hexadecimal value 21A8 to display the Up Down Arrow Base. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\21A8 is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+21A8 in the Arrows block (U+2190–U+21FF). The horizontal base line anchors the bidirectional vertical arrow to a reference point.

Use Cases

The Up Down Arrow Base (↨) is commonly used in:

🔝 Expand / collapse

Accordion headers and panels showing bidirectional movement from a base line.

📜 Navigation

Menus indicating vertical movement anchored to a baseline or section.

🎨 UI design

Resize handles and split-pane controls with a grounded vertical arrow.

🛠 Iconography

Icon sets with up-down arrows that include a base or anchor line.

🗺 Diagrams

Flowcharts showing vertical movement from a fixed reference point.

💻 Web applications

Dashboards with expandable sections and vertical range controls.

💡 Best Practices

Do

  • Use &#x21A8; or &#8616; consistently in markup
  • Add aria-label when the arrow conveys expand/collapse or resize meaning
  • Use ↨ when a base line adds context; use ↕ (&varr;) for plain vertical bidirectional arrows
  • Use \21A8 in CSS ::before / ::after for icon buttons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ↨ (with base) with ↕ (&varr;, plain up-down arrow)
  • Use U+021A8 or CSS \021A8—the correct value is U+21A8 and \21A8
  • Expect a named entity—none exists for U+21A8
  • Put CSS escape \21A8 in HTML text nodes
  • Assume all decorative fonts include extended Arrows glyphs

Key Takeaways

1

Two HTML numeric references render ↨

&#x21A8; &#8616;
2

For CSS stylesheets, use \21A8 in content

3

Unicode U+21A8 — UP DOWN ARROW WITH BASE

4

Plain up-down arrow: ↕ via &varr; (U+2195)

5

Three methods, one glyph — no named HTML entity

❓ Frequently Asked Questions

Use &#x21A8; (hex), &#8616; (decimal), or \21A8 in CSS content. There is no named entity. All produce ↨.
U+21A8 (UP DOWN ARROW WITH BASE). Arrows block (U+2190–U+21FF). Hex 21A8, decimal 8616.
In navigation elements, expand/collapse controls, resize handles, and any content needing bidirectional vertical movement with a base reference line.
HTML references (&#8616; or &#x21A8;) go in markup. The CSS escape \21A8 is used in stylesheets, typically in the content property of pseudo-elements.
Named HTML entities cover common symbols like &varr; (U+2195). Extended Arrows block characters such as U+21A8 use numeric hex or decimal references—standard practice for specialized arrow glyphs.

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