HTML Entity for White Chess Pawn (♙)

What You'll Learn
How to display the White Chess Pawn (♙) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2659 (WHITE CHESS PAWN) in the Miscellaneous Symbols chess range (U+2654–U+265F)—the standard Unicode glyph for the white pawn chess piece on boards, tutorials, and notation.
Render it with ♙, ♙, or CSS escape \2659. There is no named HTML entity. White begins with eight pawns on the second rank; a pawn usually moves one square forward (two on its first move) and captures diagonally forward. Do not confuse ♙ with black pawn ♟ (U+265F).
⚡ Quick Reference — White Chess Pawn
U+2659Miscellaneous Symbols (chess range)
♙Hexadecimal reference
♙Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2659
Hex code ♙
HTML code ♙
Named entity (none)
CSS code \2659
Meaning White chess pawn
Related U+265F = ♟ (black chess pawn)
U+2655 = ♕ (white chess queen)
Block Miscellaneous Symbols (U+2654–U+265F chess pieces)Complete HTML Example
A simple example showing the White Chess Pawn (♙) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2659";
}
</style>
</head>
<body>
<p>White Chess Pawn (hex): ♙</p>
<p>White Chess Pawn (decimal): ♙</p>
<p id="point">White Chess Pawn (CSS): </p>
</body>
</html>🌐 Browser Support
U+2659 is supported in modern browsers when rendered with a font that includes chess piece glyphs:
👀 Live Preview
See the White Chess Pawn (♙) in chess contexts:
🧠 How It Works
Hexadecimal Code
♙ uses the Unicode hexadecimal value 2659 to display the White Chess Pawn. The x prefix indicates hexadecimal format.
Decimal HTML Code
♙ uses the decimal Unicode value 9817 to display the same character. A common method for chess piece symbols in HTML.
CSS Entity
\2659 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: ♙. Unicode U+2659 is the white pawn in the chess piece range. Not the same as ♟ (black pawn).
Use Cases
The White Chess Pawn (♙) is commonly used in:
Online chess platforms and game applications.
Board interfaces and interactive chess content.
Tutorials about pawn structure and opening play.
Graphic design and chess-themed projects.
Instructional material about pawn rules and strategy.
Game websites and interfaces featuring chess.
Move annotations, game records, and PGN content.
💡 Best Practices
Do
- Pair ♙ with
aria-label="white pawn"or visible text on boards - Use numeric references when escaping is required
- Pick one style (hex or decimal) per project for consistency
- Use serif or chess-friendly fonts for piece glyphs
- Distinguish white pawn U+2659 from black pawn U+265F
Don’t
- Confuse white pawn ♙ with black pawn ♟
- Mix entity styles randomly in one file
- Use CSS escape
\2659inside HTML markup - Expect a named HTML entity—none exists for ♙
- Rely on color alone to show piece side—use the correct Unicode code point
Key Takeaways
Type ♙ directly, or use hex/decimal references
♙ ♙For CSS stylesheets, use the escape in the content property
\2659Unicode U+2659 — WHITE CHESS PAWN (chess piece range)
Black pawn is U+265F (♟) — not interchangeable
Previous: White Chess Knight (♘) Next: White Chess Queen
❓ Frequently Asked Questions
♙ (hex), ♙ (decimal), or \2659 in CSS content. There is no named HTML entity. In UTF-8 you can also type ♙ directly.U+2659 (WHITE CHESS PAWN). Chess piece range U+2654–U+265F within Miscellaneous Symbols. Hex 2659, decimal 9817. Black pawn is U+265F (♟).♙ or ♙) go directly in markup. The CSS escape \2659 is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.♙ or ♙ in HTML, or \2659 in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — symbols, punctuation, and more.
8 people found this page helpful
