HTML Entity for Down Arrow Left Up Arrow (⇵)

What You'll Learn
How to display the Down Arrow Left Up Arrow (⇵) in HTML using hexadecimal, decimal, the named entity ⇵, and CSS escape methods. This character is U+21F5 (DOWNWARDS ARROW LEFTWARDS OF UPWARDS ARROW) in the Arrows block (U+2190–U+21FF)—a downward arrow to the left of an upward arrow, used for bidirectional or vertical indicators in UI, sort controls, and documentation.
Render it with ⇵, ⇵, ⇵, or CSS escape \21F5. For a single vertical double-headed arrow use ↕ (↕, U+2195). For straight down only use ↓ (↓).
⚡ Quick Reference — Down Arrow Left Up Arrow
U+21F5Arrows block
⇵Hexadecimal reference
⇵Decimal reference
⇵HTML5 named entity for U+21F5
Name Value
──────────── ──────────
Unicode U+21F5
Hex code ⇵
HTML code ⇵
Named entity ⇵
CSS code \21F5
Related U+2195 = Up-down arrow (↕); U+2193 = Down (↓)Complete HTML Example
This example demonstrates the Down Arrow Left Up Arrow (⇵) using hexadecimal code, decimal HTML code, the named entity ⇵, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\21F5";
}
</style>
</head>
<body>
<p>Down Arrow Left Up Arrow using Hexadecimal: ⇵</p>
<p>Down Arrow Left Up Arrow using HTML Code: ⇵</p>
<p>Down Arrow Left Up Arrow using HTML Entity: ⇵</p>
<p id="point">Down Arrow Left Up Arrow using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+21F5 is widely supported in modern browsers when rendered with a font that includes Arrows:
👀 Live Preview
See the Down Arrow Left Up Arrow (⇵) in bidirectional and sort contexts:
🧠 How It Works
Hexadecimal Code
⇵ uses the Unicode hexadecimal value 21F5 to display the Down Arrow Left Up Arrow. The x prefix indicates hexadecimal format.
Decimal HTML Code
⇵ uses the decimal Unicode value 8693 to display the same character.
Named HTML Entity
⇵ is the HTML5 named entity for U+21F5. It is easy to read in source and resolves to ⇵.
CSS Entity
\21F5 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce: ⇵. Unicode U+21F5. Up-down arrow: ↕ (↕). Serve HTML as UTF-8.
Use Cases
The Down Arrow Left Up Arrow (⇵) is commonly used in:
Indicate vertical resize, expand both ways, or bidirectional movement in UI.
Show scroll up/down or vertical scroll in navigation and controls.
Represent sortable columns (both directions) in tables and data grids.
Indicate expand up/down or toggle state in accordions and panels.
Show bidirectional or vertical flow in process diagrams.
Document up/down arrow keys or vertical navigation in help and specs.
💡 Best Practices
Do
- Use
⇵for readable markup, or⇵/⇵ - Add
aria-labelwhen the symbol means sort, resize, or scroll vertically - Pair ⇵ with a tooltip or label when meaning may not be obvious
- Use
\21F5in CSS::before/::afterfor sort or resize icons - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse
⇵(⇵) with↕(↕, up-down arrow) - Confuse ⇵ with ↓ (
↓, down only) - Put CSS escape
\21F5in HTML text nodes - Rely on the symbol alone in accessibility-critical UIs
- Assume decorative fonts include all Arrows glyphs
Key Takeaways
Named entity available: ⇵
⇵ ⇵For CSS stylesheets, use the escape in the content property
\21F5Unicode U+21F5 — DOWNWARDS ARROW LEFTWARDS OF UPWARDS ARROW
Not the same as ↕ (↕, U+2195)
Four methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
⇵ (hex), ⇵ (decimal), ⇵ (named entity), or \21F5 in CSS content. All produce ⇵.U+21F5 (DOWNWARDS ARROW LEFTWARDS OF UPWARDS ARROW). Arrows block (U+2190–U+21FF). Hex 21F5, decimal 8693. The glyph shows a downward arrow to the left of an upward arrow.⇵ is easier to read in source than ⇵ or ⇵, but all produce ⇵. The CSS escape \21F5 is used in stylesheets in the content property of pseudo-elements.⇵ is the Down Arrow Left Up Arrow (⇵, U+21F5), with down and up arrows side by side. The up-down arrow (↕, U+2195, ↕) is a single vertical double-headed arrow. They suggest similar ideas but are different characters.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
