HTML Entity for Up Paired Arrows (⇈)

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

What You'll Learn

How to display the Up Paired Arrows (⇈) in HTML using hexadecimal, decimal, the named entity ⇈, and CSS escape methods. This character is U+21C8 (UPWARDS PAIRED ARROWS) in the Arrows block (U+2190–U+21FF)—two upward-pointing arrows arranged side by side, commonly used for scroll indicators, navigation, and directional UI.

Render it with ⇈, ⇈, ⇈, or CSS escape \21C8. Compare ⇑ (U+21D1, up double arrow via ⇑) and ↑ (U+2191, single up arrow via ↑).

⚡ Quick Reference — Up Paired Arrows

Unicode U+21C8

Arrows block

Hex Code ⇈

Hexadecimal reference

HTML Code ⇈

Decimal reference

Named Entity ⇈

HTML5 named entity for U+21C8

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21C8
Hex code       ⇈
HTML code      ⇈
Named entity   ⇈
CSS code       \21C8
Official name  UPWARDS PAIRED ARROWS
Related        U+21D1 = Up double arrow (⇑); U+2191 = Up arrow (↑)
Block          Arrows (U+2190–U+21FF)
1

Complete HTML Example

A simple example showing ⇈ with hex, decimal, named entity, and CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\21C8";
  }
 </style>
</head>
<body>
<p>Paired Up (hex): &#x21C8;</p>
<p>Paired Up (decimal): &#8648;</p>
<p>Paired Up (entity): &uuarr;</p>
<p id="point">Paired Up (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+21C8 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 Up Paired Arrows (⇈) in navigation and UI contexts:

Large glyph
Scroll up Scroll ⇈
Navigation Go up ⇈
vs single/double ⇈ paired   ⇑ double   ↑ single
Named entity &uuarr; → ⇈
All HTML refs &#x21C8; &#8648; &uuarr;

🧠 How It Works

1

Hexadecimal Code

&#x21C8; uses the Unicode hexadecimal value 21C8 to display the Up Paired Arrows. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named HTML Entity

&uuarr; is the HTML5 named entity for U+21C8. It is easy to read in source and resolves to ⇈.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce: . Unicode U+21C8 in the Arrows block (U+2190–U+21FF). Two upward arrows side by side for scroll and navigation indicators.

Use Cases

The Up Paired Arrows (⇈) is commonly used in:

🔝 Scroll indicators

Page navigation and scroll-to-top controls showing upward movement.

📜 Navigation

Menus and toolbars indicating upward navigation or fast scroll up.

🎨 UI design

Buttons and controls needing paired upward arrow indicators.

🔢 Mathematical notation

Equations and documents using paired upward arrow symbols.

🛠 Iconography

Icon sets with dual upward arrows for web and app interfaces.

💻 Web applications

Dashboards and content panels with upward navigation cues.

💡 Best Practices

Do

  • Use &uuarr; for readable markup, or &#x21C8; / &#8648;
  • Add aria-label when the arrows convey scroll or navigation meaning
  • Use paired arrows in proper scroll or directional UI contexts
  • Use \21C8 in CSS ::before / ::after for icon buttons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Use U+021C8 or CSS \021C8—the correct value is U+21C8 and \21C8
  • Confuse &uuarr; (U+21C8, paired) with &uArr; (U+21D1, double arrow)
  • Put CSS escape \21C8 in HTML text nodes
  • Rely on the symbol alone without context in accessibility-critical UIs
  • Assume all decorative fonts include extended Arrows glyphs

Key Takeaways

1

Named entity available: &uuarr;

&#x21C8; &#8648;
2

For CSS stylesheets, use \21C8 in content

3

Unicode U+21C8 — UPWARDS PAIRED ARROWS

4

Double arrow: ⇑ via &uArr; (U+21D1)

5

Four methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x21C8; (hex), &#8648; (decimal), &uuarr; (named entity), or \21C8 in CSS content. All produce ⇈.
U+21C8 (UPWARDS PAIRED ARROWS). Arrows block (U+2190–U+21FF). Hex 21C8, decimal 8648.
In navigation, scroll indicators, directional UI, mathematical notation, and any content needing two upward arrows side by side.
&uuarr; is easier to read in source than &#8648; or &#x21C8;, but all produce ⇈. Do not confuse with &uArr; (U+21D1, up double arrow).
The named HTML entity is &uuarr;. It is part of the HTML5 named entity set, making it convenient to use instead of numeric hex or decimal references.

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