HTML Entity for White Down Pointing Index (☟)

What You'll Learn
How to display White Down Pointing Index (☟) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+261F (WHITE DOWN POINTING INDEX) in the Miscellaneous Symbols block (U+2600–U+26FF), part of the pointing-index subrange (U+261C–U+261F for white hands; U+261A–U+261B for black).
Render it with ☟, ☟, or CSS escape \261F. There is no named HTML entity. It is a manicule-style outline hand pointing downward—useful for scroll hints, CTAs, and downward navigation. Do not confuse ☟ with ☝ (up), ☞ (right), or black indices ☚/☛.
⚡ Quick Reference — White Down Pointing Index
U+261FMiscellaneous Symbols (pointing index)
☟Hexadecimal reference
☟Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+261F
Hex code ☟
HTML code ☟
Named entity (none)
CSS code \261F
Meaning White (outline) hand pointing down
Related U+261D = ☝ (white up pointing index)
U+261E = ☞ (white right pointing index)
U+261B = ☛ (black right pointing index)
Block Miscellaneous Symbols (U+261A–U+261F pointing indices)Complete HTML Example
A simple example showing White Down Pointing Index (☟) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#pointer:after{
content: "\261F";
}
</style>
</head>
<body>
<p>White Down Pointing Index (hex): ☟</p>
<p>White Down Pointing Index (decimal): ☟</p>
<p id="pointer">White Down Pointing Index (CSS): </p>
</body>
</html>🌐 Browser Support
U+261F is supported in modern browsers when the font includes Miscellaneous Symbols glyphs:
👀 Live Preview
See White Down Pointing Index (☟) in context:
🧠 How It Works
Hexadecimal Code
☟ uses the Unicode hexadecimal value 261F to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
☟ uses the decimal Unicode value 9759 to display the same character. A common method for symbol characters in HTML.
CSS Entity
\261F is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: ☟. Unicode U+261F is the downward white pointing index in U+261C–U+261F. Not the same as ☝ (up) or black indices ☚/☛.
Use Cases
White Down Pointing Index (☟) is commonly used in:
Encourage users to scroll down for more content on landing pages.
Draw attention to buttons, forms, or sections below the fold.
Downward directional cues in menus, tours, and onboarding flows.
Tutorials and guides pointing readers to the next step below.
Manicule-style emphasis in editorial and vintage-themed layouts.
Highlight expandable panels, accordions, and dropdown targets.
Pair ☟ with visible text; do not rely on the glyph alone for direction.
💡 Best Practices
Do
- Pair ☟ with text like “Scroll down” or
aria-labelfor screen readers - Use numeric references when escaping is required
- Pick one style (hex or decimal) per project for consistency
- Use fonts that support Miscellaneous Symbols characters
- Distinguish U+261F from other pointing indices by direction and fill style
Don’t
- Confuse ☟ (down) with ☝ (up), ☞ (right), or ☛ (black right)
- Use the hand glyph as the only cue for critical navigation
- Mix entity styles randomly in one file
- Use CSS escape
\261Finside HTML markup - Expect a named HTML entity—none exists for ☟
Key Takeaways
Type ☟ directly, or use hex/decimal references
☟ ☟For CSS stylesheets, use the escape in the content property
\261FUnicode U+261F — WHITE DOWN POINTING INDEX (manicule)
White indices U+261C–U+261F differ by direction from black U+261A–U+261B
Previous: White Diamond Suit (♢) Next: White Feathered Right Arrow
❓ Frequently Asked Questions
☟ (hex), ☟ (decimal), or \261F in CSS content. There is no named HTML entity. In UTF-8 you can also type ☟ directly.U+261F (WHITE DOWN POINTING INDEX). Miscellaneous Symbols, pointing-index range. Hex 261F, decimal 9759.☟ or ☟) go directly in markup. The CSS escape \261F is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.☟ or ☟ in HTML, or \261F in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — symbols, punctuation, and more.
8 people found this page helpful
