HTML Entity for White Right Pointing Index (☞)

What You'll Learn
How to display the White Right Pointing Index symbol (☞) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+261E (WHITE RIGHT POINTING INDEX) in the Miscellaneous Symbols block (U+2600–U+26FF)—a hand with index finger pointing right.
Render it with ☞, ☞, or CSS escape \261E. There is no named HTML entity. Do not confuse ☞ with ☛ (black right pointing index) or arrow → (U+2192).
⚡ Quick Reference — White Right Pointing Index
U+261EMiscellaneous Symbols
☞Hexadecimal reference
☞Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+261E
Hex code ☞
HTML code ☞
Named entity (none)
CSS code \261E
Meaning White right pointing index
Related U+261B = ☛ (black right pointing index)
U+261C = ☜ (white left pointing index)
U+261D = ☝ (white up pointing index)
U+261F = ☟ (white down pointing index)
Block Miscellaneous Symbols (U+2600–U+26FF)Complete HTML Example
A simple example showing White Right Pointing Index (☞) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#pointer:after{
content: "\261E";
}
</style>
</head>
<body>
<p>White Right Pointing Index (hex): ☞</p>
<p>White Right Pointing Index (decimal): ☞</p>
<p id="pointer">White Right Pointing Index (CSS): </p>
</body>
</html>🌐 Browser Support
U+261E is supported in modern browsers when the font includes Miscellaneous Symbols glyphs:
👀 Live Preview
See White Right Pointing Index (☞) in context:
→)🧠 How It Works
Hexadecimal Code
☞ uses the Unicode hexadecimal value 261E to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
☞ uses the decimal Unicode value 9758 to display the same character. A common method for symbol characters in HTML.
CSS Entity
\261E 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+261E is the white right pointing index in U+261C–U+261F. Not the same as ☛ (black right) or → (→).
Use Cases
White Right Pointing Index (☞) is commonly used in:
Tutorials and guides pointing to important next steps or key info.
Direct attention to specific areas, sections, or UI elements.
Buttons, links, and prompts that need forward emphasis.
Forward navigation, next-page links, and rightward flow indicators.
Emphasize tips, notes, and important points in content.
Toolbars, menus, and interface elements with pointing cues.
Pair ☞ with visible text or aria-label; do not rely on the glyph alone.
💡 Best Practices
Do
- Use ☞ for a white outline right-pointing hand; use ☛ for the black variant
- Pair the pointer with accessible text like “Next” 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 right index) with ☛ (black right index) or → (
→) - Use the hand glyph as the only navigation or CTA cue
- Mix entity styles randomly in one file
- Use CSS escape
\261Einside 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
\261EUnicode U+261E — WHITE RIGHT POINTING INDEX (Miscellaneous Symbols)
White indices U+261C–U+261F cover left, up, right, and down directions
Previous: White Nib (✑) Next: White Scissors (✄)
❓ Frequently Asked Questions
☞ (hex), ☞ (decimal), or \261E in CSS content. There is no named HTML entity. In UTF-8 you can also type ☞ directly.U+261E (WHITE RIGHT POINTING INDEX). Miscellaneous Symbols block U+2600–U+26FF. Hex 261E, decimal 9758.☞ or ☞) go directly in markup. The CSS escape \261E 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 \261E in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — symbols, punctuation, and more.
8 people found this page helpful
