HTML Entity for Down Arrow With Tip Right (↳)

What You'll Learn
How to display the Down Arrow With Tip Right (↳) in HTML using hexadecimal, decimal, the named entity ↳, and CSS escape methods. This character is U+21B3 (DOWNWARDS ARROW WITH TIP RIGHTWARDS) in the Arrows block (U+2190–U+21FF)—a downward arrow with its tip bent to the right, used for navigation, UI corners, and down-then-right flow.
Render it with ↳, ↳, ↳, or CSS escape \21B3. For tip left use ↲ (↲, U+21B2). For corner left (carriage return style) use ↵ (↵).
⚡ Quick Reference — Down Arrow With Tip Right
U+21B3Arrows block
↳Hexadecimal reference
↳Decimal reference
↳HTML5 named entity for U+21B3
Name Value
──────────── ──────────
Unicode U+21B3
Hex code ↳
HTML code ↳
Named entity ↳
CSS code \21B3
Related U+21B2 = Tip left (↲); U+21B5 = Corner left (↵)Complete HTML Example
This example demonstrates the Down Arrow With Tip Right (↳) using hexadecimal code, decimal HTML code, the named entity ↳, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\21B3";
}
</style>
</head>
<body>
<p>Down Arrow With Tip Right using Hexadecimal: ↳</p>
<p>Down Arrow With Tip Right using HTML Code: ↳</p>
<p>Down Arrow With Tip Right using HTML Entity: ↳</p>
<p id="point">Down Arrow With Tip Right using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+21B3 is widely supported in modern browsers when rendered with a font that includes Arrows:
👀 Live Preview
See the Down Arrow With Tip Right (↳) in navigation and corner contexts:
🧠 How It Works
Hexadecimal Code
↳ uses the Unicode hexadecimal value 21B3 to display the Down Arrow With Tip Right. The x prefix indicates hexadecimal format.
Decimal HTML Code
↳ uses the decimal Unicode value 8627 to display the same character.
Named HTML Entity
↳ is the HTML5 named entity for U+21B3 (right-shifting down arrow). It is easy to read in source and resolves to ↳.
CSS Entity
\21B3 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+21B3. Tip left: ↲ (↲). Serve HTML as UTF-8.
Use Cases
The Down Arrow With Tip Right (↳) is commonly used in:
Corner navigation, down-then-right, or return-style cues in menus and links.
Corner icons, expand/collapse, or go-to-corner in buttons and controls.
Enter or down-right notation in help text and documentation.
Flow downward then right in process and flowchart symbols.
Document UI behavior or navigation in design systems.
Hint at down-right or return movement in accessibility text.
💡 Best Practices
Do
- Use
↳for readable markup, or↳/↳ - Add
aria-labelwhen the symbol means return, corner, or down-right - Pair ↳ with a tooltip or label when meaning may not be obvious
- Use
\21B3in CSS::before/::afterfor corner icons - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse
↳(↳) with↲(↲, tip left) - Confuse ↳ with ↵ (
↵, corner left) - Put CSS escape
\21B3in 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
\21B3Unicode U+21B3 — DOWNWARDS ARROW WITH TIP RIGHTWARDS
Mirror of tip left: ↲ via ↲ (U+21B2)
Four methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
↳ (hex), ↳ (decimal), ↳ (named entity), or \21B3 in CSS content. All produce ↳.U+21B3 (DOWNWARDS ARROW WITH TIP RIGHTWARDS). Arrows block (U+2190–U+21FF). Hex 21B3, decimal 8627. The glyph is a downward arrow with its tip bent to the right.↳ is easier to read in source than ↳ or ↳, but all produce ↳. The CSS escape \21B3 is used in stylesheets in the content property of pseudo-elements.↳ is the Down Arrow With Tip Right (↳, U+21B3), with the tip bent to the right. The Down Arrow Tip Left (↲, U+21B2, ↲) has its tip bent to the left. They are mirror images and different Unicode glyphs.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
