HTML Entity for Up Arrow Two Headed (↟)

What You'll Learn
How to display the Up Arrow Two Headed (↟) in HTML using hexadecimal, decimal, the named entity ↟, and CSS escape methods. This character is U+219F (UPWARDS TWO HEADED ARROW) in the Arrows block (U+2190–U+21FF)—an upward-pointing arrow with arrowheads at both ends, used for strong upward direction or bidirectional vertical movement cues.
Render it with ↟, ↟, ↟, or CSS escape \219F. Do not confuse ↟ (U+219F, two-headed) with ↑ (U+2191, single up arrow). Compare ↰ (up arrow tip left, U+21B0, ↰) for a left-tipped variant.
⚡ Quick Reference — Up Arrow Two Headed
U+219FArrows block
↟Hexadecimal reference
↟Decimal reference
↟HTML5 named entity for U+219F
Name Value
──────────── ──────────
Unicode U+219F
Hex code ↟
HTML code ↟
Named entity ↟
CSS code \219F
Official name UPWARDS TWO HEADED ARROW
Related U+2191 = Up arrow (↑); U+21B0 = Tip left (↰)
Block Arrows (U+2190–U+21FF)Complete HTML Example
A simple example showing ↟ with hex, decimal, named entity, and CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\219F";
}
</style>
</head>
<body>
<p>Two Headed (hex): ↟</p>
<p>Two Headed (decimal): ↟</p>
<p>Two Headed (entity): ↟</p>
<p id="point">Two Headed (CSS): </p>
</body>
</html>🌐 Browser Support
U+219F is widely supported in modern browsers when rendered with a font that includes Arrows:
👀 Live Preview
See the Up Arrow Two Headed (↟) in navigation and UI contexts:
🧠 How It Works
Hexadecimal Code
↟ uses the Unicode hexadecimal value 219F to display the Up Arrow Two Headed. The x prefix indicates hexadecimal format.
Decimal HTML Code
↟ uses the decimal Unicode value 8607 to display the same character.
Named HTML Entity
↟ is the HTML5 named entity for U+219F. It is easy to read in source and resolves to the same character (↟). Not to be confused with ↑ (U+2191).
CSS Entity
\219F is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce: ↟. Unicode U+219F in the Arrows block (U+2190–U+21FF). The double arrowhead design emphasizes strong upward or bidirectional vertical movement.
Use Cases
The Up Arrow Two Headed (↟) is commonly used in:
Menus and controls indicating strong upward movement or scroll-to-top with emphasis.
Diagrams showing vertical movement that can go both up and down along an axis.
Buttons and interactive elements needing a bold upward directional indicator.
Icon sets requiring two-headed upward arrows for visual emphasis.
Flowcharts and technical docs showing strong vertical direction or axis movement.
Dashboards and software interfaces with emphasized upward navigation symbols.
💡 Best Practices
Do
- Use
↟for readable markup, or↟/↟ - Add
aria-labelwhen the arrow conveys navigation meaning - Use the two-headed arrow when you need stronger visual emphasis than ↑
- Use
\219Fin CSS::before/::afterfor icon buttons - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse
↟(U+219F, two-headed) with↑(U+2191, single up arrow) - Use U+0219F or CSS
\0219F—the correct value is U+219F and\219F - Put CSS escape
\219Fin HTML text nodes - Rely on the symbol alone without context in accessibility-critical UIs
- Assume all decorative fonts include extended Arrows glyphs
Key Takeaways
Named entity available: ↟
↟ ↟For CSS stylesheets, use \219F in content
Unicode U+219F — UPWARDS TWO HEADED ARROW
Single up arrow: ↑ via ↑ (U+2191)
Four methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
↟ (hex), ↟ (decimal), ↟ (named entity), or \219F in CSS content. All produce ↟.U+219F (UPWARDS TWO HEADED ARROW). Arrows block (U+2190–U+21FF). Hex 219F, decimal 8607.↟ is easier to read in source than ↟ or ↟, but all produce ↟. Do not confuse ↟ (two-headed, U+219F) with ↑ (single, U+2191).↟ entity is part of the HTML5 named entity set for common directional symbols. Many extended Arrows block characters only have numeric hex or decimal references.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
