HTML Entity for Black Chess Pawn (♟)

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
U+265FMiscellaneous Symbols
♟Hexadecimal reference
♟Decimal reference
—None (use numeric refs)
Name Value
──────────── ──────────
Unicode U+265F
Hex code ♟
HTML code ♟
Named entity —
CSS code \265FComplete HTML Example
This example shows U+265F using hexadecimal and decimal character references, plus a CSS content escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\265F";
}
</style>
</head>
<body>
<p>Black Chess Pawn using Hexa Decimal: ♟</p>
<p>Black Chess Pawn using HTML Code: ♟</p>
<p id="point">Black Chess Pawn using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+265F is widely supported; piece artwork varies by typeface:
👀 Live Preview
Compare black and white pawn glyphs (font-dependent):
🧠 How It Works
Hexadecimal Code
♟ references code point U+265F using hex digits 265F after the #x prefix.
Decimal HTML Code
♟ is the decimal equivalent (9823) for the same Black Chess Pawn character.
CSS Entity
\265F is the CSS escape for U+265F, used in the content property of ::before or ::after.
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:
Boards, PGN comments, and pawn-structure callouts without image sprites.
Passed-pawn races and promotion choice UI beside figurine text.
Pawn-only studies and lightweight mobile boards.
En passant, doubled pawns, and isolated pawn lessons with inline glyphs.
Figurine pawns in analysis when images are off or slow to load.
Printable worksheets and club materials from HTML.
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
\265Fonly inside CSScontent, 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
Two numeric references render the same glyph
♟ ♟CSS content escape
\265FU+265F is black pawn; U+2659 is white pawn
Chess pieces U+2654–U+265F share one Unicode subrange in Miscellaneous Symbols
Pair glyphs with text, coordinates, or ARIA for inclusive chess UX
❓ Frequently Asked Questions
♟ (hex), ♟ (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.\265F escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.♟, ♟, 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.
8 people found this page helpful
