HTML Entity for White Right Pointing Index (☞)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+261E

What Is White Right Pointing Index?

White right pointing index (☞) is Unicode U+261E (WHITE RIGHT POINTING INDEX) in the Miscellaneous Symbols block. It is an outline manicule (pointing hand) facing right — useful for next steps and rightward CTAs. HTML5 has no named entity for this character.

Remember
Character     ☞
Unicode       U+261E
Hex entity    ☞
Decimal       ☞
CSS escape    \261E
Named entity  (none)
Not the same  ☜ U+261C (white left)

All of these produce the same glyph: ☞. Prefer typing ☞ in UTF-8 when you can; use numeric or CSS forms for generated content.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character☞HTML text (UTF-8) — preferred
Hex entity☞HTML markup
Decimal entity☞HTML markup
CSS escape\261EStylesheet content
Named entity—Not defined in HTML5

When to Use Which

SituationUse
Point right☞ or type ☞
Point left☜ (U+261C)
Point up / down☝ · ☟
Filled (black) indices☚ · ☛
Icon via CSScontent: "\261E" on ::before

Live Preview

White right pointing index in common study contexts.

Large glyph ☞
Next step Continue ☞
White indices ☜ ☝ ☞ ☟
Accessible label right Right
With entities Hex: ☞ | Decimal: ☞

Complete HTML Example

One page that shows ☞ with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce ☞ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>White Right Pointing Index (☞) in HTML</title>
  <style>
    #point::after {
      content: "\261E";
    }
  </style>
</head>
<body>
  <p>White right pointing index using Hex Code: &#x261E;</p>
  <p>White right pointing index using HTML Code: &#9758;</p>
  <p id="point">White right pointing index using CSS Entity: </p>
  <p>Typed directly: ☞</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+261E → &#x261E; in HTML. The browser turns it into ☞.

2. Decimal: same code point as 9758 → &#9758;. Same result as hex.

3. CSS: use \261E in content (not an HTML entity). #point::after appends that ☞ after the paragraph text.

4. Typed ☞: fine in UTF-8 source. There is no named entity for this symbol.

Pitfalls & Tips

Common mistakes when working with white right pointing index (☞).

Direction

Pick the right hand

☞ is right. Do not confuse it with ☜, ☝, or ☟.

Named?

No named entity

HTML5 does not define a named entity for U+261E. Use numeric forms when an entity is required.

Fill

White ≠ black

White indices are outline (U+261C–U+261F). Black filled hands are U+261A–U+261B.

a11y

Say “Next” or “Right”

Screen readers may not announce the hand clearly. Pair the glyph with visible or visually hidden text.

Fonts

Check glyph support

Some fonts omit manicules. Provide a fallback stack that includes a symbol-capable font.

Semicolon

End references

Always finish with ; — write &#9758;, not &#9758.

Browser Support

White right pointing index (U+261E) and its entity forms (&#x261E;, &#9758;, CSS \\261E) are supported in all mainstream browsers. Glyph quality depends on font support for Miscellaneous Symbols.

✓ Universal support

White Right Pointing Index (☞)

Type ☞, or encode with hex, decimal, or CSS escape — same glyph everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+261E / entities Full support

Bottom line: Prefer a typed ☞ or &#x261E; / &#9758; for markup. Use \\261E only inside CSS content.

Key Takeaways

  • Unicode: white right pointing index is U+261E (decimal 9758).
  • HTML: prefer typing ☞, or use &#x261E; / &#9758;.
  • CSS: use \261E inside content for generated icons.
  • Watch out: no named entity; ☞ ≠ ☜ (right ≠ left).

One line: U+261E → type ☞ / &#x261E; / &#9758; / CSS \261E.

Frequently Asked Questions

Use &#x261E; (hex), &#9758; (decimal), or the CSS escape \261E in the content property. All render ☞. You can also paste ☞ directly if your file is UTF-8. There is no named HTML entity.
U+261E (hex 261E, decimal 9758). Unicode names it WHITE RIGHT POINTING INDEX. It belongs to the Miscellaneous Symbols block in the pointing-index range.
No. HTML5 does not define a named entity for this symbol. Use &#x261E; or &#9758; in markup, or \261E in CSS.
☞ (U+261E) points right. ☜ (U+261C) points left, ☝ (U+261D) points up, and ☛ (U+261B) is the filled black right index. They are different code points.
HTML entities (&#9758; or &#x261E;) go in markup. The CSS escape \261E is used in stylesheets (usually in the content property of ::before/::after). Both render ☞.
Use ☞ for next steps, rightward CTAs, and visual pointers. Always pair the glyph with visible text (for example “Next”) so direction is clear for screen reader users.

Did you know?

White right pointing index is Unicode U+261E (decimal 9758) in the Miscellaneous Symbols block — official name WHITE RIGHT POINTING INDEX. HTML5 has no named entity for it. It is a manicule-style outline hand pointing right — not the same as ☜ (left) or black indices ☚/☛.

Next: White Scissors

Learn the HTML entity for white scissors (✄).

Continue tutorial →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful