HTML Entity for Black Right Pointing Index (☛)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+261B

What You'll Learn

How to display Black Right Pointing Index (☛) in HTML and CSS. This character is U+261B in the Miscellaneous Symbols block (U+2600–U+26FF), approved in Unicode 1.1 (1993). Its Unicode name is BLACK RIGHT POINTING INDEX—a manicule or “printer’s fist,” a solid black hand with an extended index finger pointing left.

There is no named HTML entity for U+261B. Use ☛ or ☛ in markup, or \261B in stylesheet content. The symbol suits navigation buttons, call-out markers, interactive UI, and editorial design. Always pair navigation glyphs with visible text or aria-label (for example “Back” or “Previous”).

⚡ Quick Reference — Black Right Pointing Index

Unicode U+261B

Miscellaneous Symbols (U+2600–U+26FF)

Hex Code ☛

Hexadecimal reference

HTML Code ☛

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+261B
Hex code       ☛
HTML code      ☛
Named entity   —
CSS code       \261B
1

Complete HTML Example

This example shows U+261B using hexadecimal and decimal character references, plus a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\261B";
  }
 </style>
</head>
<body>
<p>Black Right Pointing Index using Hexa Decimal: &#x261B;</p>
<p>Black Right Pointing Index using HTML Code: &#9755;</p>
<p id="point">Black Right Pointing Index using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+261B is widely supported in modern browsers; hand glyph artwork varies by typeface:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the glyph at different sizes and beside the paired left-pointing index (font-dependent):

Large glyph
Navigation ☚ Back  |  Next ☛
Index pair (U+261A & U+261B) ☚ ☛
Caption U+261A is BLACK LEFT POINTING INDEX; U+261B is BLACK RIGHT POINTING INDEX in Miscellaneous Symbols.
Monospace refs &#x261B; &#9755; \261B

🧠 How It Works

1

Hexadecimal Code

&#x261B; references code point U+261B using hex digits 261B after the #x prefix.

HTML markup
2

Decimal HTML Code

&#9755; is the decimal equivalent (9755) for the same Black Right Pointing Index character.

HTML markup
3

CSS Entity

\261B is the CSS escape for U+261B, used in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

Hex, decimal, and CSS escapes all produce . There is no named HTML entity for U+261B.

Use Cases

The Black Right Pointing Index (☛) is commonly used for:

🧭 Navigation buttons

Next page, forward, continue, and directional navigation controls.

💻 Interactive elements

Clickable buttons, carousel controls, and slider indicators.

📱 User interfaces

Mobile app forward gestures, toolbar icons, and menu indicators.

📄 Call-out markers

Drawing attention to important text, marginal notes, and typographic emphasis.

🎨 Design elements

Decorative manicules, vintage typography, and editorial design.

📚 Documentation

Step indicators, “see also” pointers, and instructional call-outs.

♿ Accessibility

Pair ☛ with text or aria-label (e.g. “Next”) for screen reader users.

💡 Best Practices

Do

  • Use hex or decimal consistently—there is no named entity for U+261B
  • Pair ☛ with ☚ (black left pointing index) for back/forward navigation
  • Use for “next,” “forward,” or “continue” with proper aria-label
  • Choose fonts that support the Miscellaneous Symbols block (U+2600–U+26FF)
  • Use \261B only inside CSS content, not inside HTML text nodes
  • Add visible button text or aria-label on navigation controls

Don’t

  • Confuse U+261B with U+261A (left index) or U+261D (white right index)
  • Rely on ☛ alone to communicate meaning in critical UI
  • Assume every font renders hand symbols crisply at small sizes
  • Use the manicule as the only navigation or state cue without labels
  • Mix CSS escapes into HTML text nodes (use numeric refs in markup)

Key Takeaways

1

Two numeric references render the same glyph

&#x261B; &#9755;
2

CSS content escape

\261B
3

U+261B is a right-pointing index; pairs with Black Left Pointing Index U+261A

4

Miscellaneous Symbols block U+2600–U+26FF; no named HTML entity

5

Pair navigation glyphs with text or ARIA when meaning must be clear

❓ Frequently Asked Questions

Use &#x261B; (hex), &#9755; (decimal), or \261B in CSS content. There is no named entity; all valid methods render ☛.
U+261B (hex 261B, decimal 9755). Miscellaneous Symbols (U+2600–U+26FF). Unicode name BLACK RIGHT POINTING INDEX.
For navigation buttons, forward/next indicators, interactive elements, user interfaces, call-out markers, and right-pointing attention indicators.
Numeric references belong in HTML. The \261B escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.
No. Use &#x261B;, &#9755;, or \261B in CSS depending on whether you are authoring markup or styles.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.

All HTML Entities →

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