HTML Entity for White Up Pointing Index (☝)

What You'll Learn
How to display the White Up Pointing Index symbol (☝) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+261D (WHITE UP POINTING INDEX) in the Miscellaneous Symbols block (U+2600–U+26FF)—a hand with index finger pointing upward.
Render it with ☝, ☝, or CSS escape \261D. There is no named HTML entity. Do not confuse ☝ with arrow ↑ (U+2191) or emoji 👆 (U+1F446, white up pointing backhand index). Pair the glyph with visible text or aria-label when it conveys meaning.
⚡ Quick Reference — White Up Pointing Index
U+261DMiscellaneous Symbols
☝Hexadecimal reference
☝Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+261D
Hex code ☝
HTML code ☝
Named entity (none)
CSS code \261D
Meaning White up pointing index
Related U+261C = ☜ (white left pointing index)
U+261E = ☞ (white right pointing index)
U+261F = ☟ (white down pointing index)
U+261A = ☚ (black left pointing index)
U+261B = ☛ (black right pointing index)
Block Miscellaneous Symbols (U+2600–U+26FF)Complete HTML Example
A simple example showing White Up Pointing Index (☝) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#pointer:after{
content: "\261D";
}
</style>
</head>
<body>
<p>White Up Pointing Index (hex): ☝</p>
<p>White Up Pointing Index (decimal): ☝</p>
<p id="pointer">White Up Pointing Index (CSS): </p>
</body>
</html>🌐 Browser Support
U+261D is supported in modern browsers when the font includes Miscellaneous Symbols glyphs:
👀 Live Preview
See White Up Pointing Index (☝) in context:
↑, U+2191) | 👆 (U+1F446, emoji backhand index)🧠 How It Works
Hexadecimal Code
☝ uses the Unicode hexadecimal value 261D to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
☝ uses the decimal Unicode value 9757 to display the same character. A common method for symbol characters in HTML.
CSS Entity
\261D 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+261D is the white up pointing index in U+261C–U+261F. Not the same as ↑ (↑) or emoji 👆.
Use Cases
White Up Pointing Index (☝) is commonly used in:
Point to important content, sections, or upward navigation on web pages.
Draw attention to key information, tips, or important notes in content.
Buttons, links, and sections that require user interaction or attention.
Highlight steps, instructions, or important points in educational content.
Guide users’ attention to specific areas of a webpage.
Indicate upward scrolling, top of page, or return-to-header navigation.
Pair ☝ with visible text or aria-label; do not rely on the glyph alone.
💡 Best Practices
Do
- Use ☝ for a white outline up-pointing hand in the U+261C–U+261F set
- Pair the pointer with accessible text like “Top” or
aria-label - Pick one numeric style (hex or decimal) per project for consistency
- Use fonts that support Miscellaneous Symbols characters
- Test rendering across browsers and devices
Don’t
- Confuse ☝ (white up index) with ↑ (
↑) or emoji 👆 - Use the hand glyph as the only navigation or CTA cue
- Mix entity styles randomly in one file
- Use CSS escape
\261Dinside 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
\261DUnicode U+261D — WHITE UP POINTING INDEX (Miscellaneous Symbols)
White indices U+261C–U+261F cover left, up, right, and down directions
Previous: White Telephone (☏) Next: Won Character (원)
❓ Frequently Asked Questions
☝ (hex), ☝ (decimal), or \261D in CSS content. There is no named HTML entity. In UTF-8 you can also type ☝ directly.U+261D (WHITE UP POINTING INDEX). Miscellaneous Symbols block U+2600–U+26FF. Hex 261D, decimal 9757.☝ or ☝) go directly in markup. The CSS escape \261D 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 \261D in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — symbols, punctuation, and more.
8 people found this page helpful
