HTML Entity for Black Left Pointing Index (☚)

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

What You'll Learn

How to display Black Left Pointing Index (☚) in HTML and CSS. This character is U+261A in the Miscellaneous Symbols block (U+2600–U+26FF), approved in Unicode 1.1 (1993). Its Unicode name is BLACK LEFT 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+261A. Use ☚ or ☚ in markup, or \261A 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 Left Pointing Index

Unicode U+261A

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+261A
Hex code       ☚
HTML code      ☚
Named entity   —
CSS code       \261A
1

Complete HTML Example

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

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

🌐 Browser Support

U+261A 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 right-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 &#x261A; &#9754; \261A

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\261A is the CSS escape for U+261A, 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+261A.

Use Cases

The Black Left Pointing Index (☚) is commonly used for:

🧭 Navigation buttons

Back buttons, previous page, left navigation, and directional controls.

💻 Interactive elements

Clickable buttons, carousel controls, and slider indicators.

📱 User interfaces

Mobile app back 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. “Back”) for screen reader users.

💡 Best Practices

Do

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

Don’t

  • Confuse U+261A with U+261B (right index) or U+261C (white left 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

&#x261A; &#9754;
2

CSS content escape

\261A
3

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

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 &#x261A; (hex), &#9754; (decimal), or \261A in CSS content. There is no named entity; all valid methods render ☚.
U+261A (hex 261A, decimal 9754). Miscellaneous Symbols (U+2600–U+26FF). Unicode name BLACK LEFT POINTING INDEX.
For navigation buttons, interactive elements, user interfaces, call-out markers, and left-pointing attention indicators.
Numeric references belong in HTML. The \261A escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.
No. Use &#x261A;, &#9754;, or \261A 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