HTML Entity for Black Chess Pawn (♟)

Beginner
⏱️ 5 min read
📚 Updated: May 2026
🎯 1 Code Example
Unicode U+265F

What You'll Learn

How to display the Black Chess Pawn (♟) in HTML and CSS. This character is U+265F (BLACK CHESS PAWN) in the Miscellaneous Symbols block (U+2600–U+26FF), with the other standard chess piece glyphs (U+2654–U+265F). Black begins with eight pawns on the seventh rank; a pawn usually moves one square forward (two on its first move from the starting rank) and captures one square diagonally forward.

There is no named HTML entity for U+265F. Use ♟ or ♟ in markup, or \265F in stylesheet content. For accessible boards, combine glyphs with square labels, aria-label, or hidden text so assistive technology does not only announce an unlabeled symbol.

⚡ Quick Reference — Black Chess Pawn

Unicode U+265F

Miscellaneous Symbols

Hex Code ♟

Hexadecimal reference

HTML Code ♟

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+265F
Hex code       ♟
HTML code      ♟
Named entity   —
CSS code       \265F
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\265F";
  }
 </style>
</head>
<body>
<p>Black Chess Pawn using Hexa Decimal: &#x265F;</p>
<p>Black Chess Pawn using HTML Code: &#9823;</p>
<p id="point">Black Chess Pawn using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+265F is widely supported; piece artwork varies by typeface:

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

👀 Live Preview

Compare black and white pawn glyphs (font-dependent):

Black pawn
White pawn
Black pawn rank (8 pawns) ♟♟♟♟♟♟♟♟
Caption Black pawn is U+265F; white pawn is U+2659.
Monospace refs &#x265F; &#9823; \265F

🧠 How It Works

1

Hexadecimal Code

&#x265F; references code point U+265F using hex digits 265F after the #x prefix.

HTML markup
2

Decimal HTML Code

&#9823; is the decimal equivalent (9823) for the same Black Chess Pawn character.

HTML markup
3

CSS Entity

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

Use Cases

The Black Chess Pawn (♟) is commonly used for:

♟ Chess sites

Boards, PGN comments, and pawn-structure callouts without image sprites.

📈 Promotion & endgames

Passed-pawn races and promotion choice UI beside figurine text.

🎮 Apps & puzzles

Pawn-only studies and lightweight mobile boards.

🎓 Teaching

En passant, doubled pawns, and isolated pawn lessons with inline glyphs.

💬 Forums

Figurine pawns in analysis when images are off or slow to load.

📄 Print CSS

Printable worksheets and club materials from HTML.

♿ Accessibility

Announce square + piece (e.g. “black pawn on d5”); ♟ alone is not enough.

💡 Best Practices

Do

  • Use one font stack for every piece so the board looks cohesive
  • Prefer numeric references in generated markup from engines and databases
  • Offer a text-only board mode (coordinates + piece letters) as an alternative
  • Use \265F only inside CSS content, not inside HTML text nodes
  • When discussing chains or islands, give file letters and ranks in text as well as glyphs

Don’t

  • Confuse black pawn U+265F with white pawn U+2659 in data or CSS
  • Rely on a row of ♟ alone to convey which file each pawn occupies
  • Assume every visitor reads figurine notation without a legend
  • Ship tournament UI using only dingbats without accessible fallbacks
  • Forget RTL: mixed LTR coordinates with RTL UI can reorder inline pieces oddly

Key Takeaways

1

Two numeric references render the same glyph

&#x265F; &#9823;
2

CSS content escape

\265F
3

U+265F is black pawn; U+2659 is white pawn

4

Chess pieces U+2654–U+265F share one Unicode subrange in Miscellaneous Symbols

5

Pair glyphs with text, coordinates, or ARIA for inclusive chess UX

❓ Frequently Asked Questions

Use &#x265F; (hex), &#9823; (decimal), or \265F in CSS content. There is no named entity; all valid methods render ♟.
U+265F (hex 265F, decimal 9823). Miscellaneous Symbols. Unicode name BLACK CHESS PAWN.
When you render chess content as UTF-8 text pieces instead of bitmap or vector assets, and you have confirmed font coverage for all pieces on the board.
Numeric references belong in HTML. The \265F escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.
No. Use &#x265F;, &#9823;, or \265F 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