HTML Entity for White Chess Pawn (♙)

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

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

Unicode U+2659

Miscellaneous Symbols (chess range)

Hex Code ♙

Hexadecimal reference

HTML Code ♙

Decimal reference

Named Entity

Use numeric codes only

Reference Table
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)
1

Complete HTML Example

A simple example showing the White Chess Pawn (♙) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2659";
  }
 </style>
</head>
<body>
<p>White Chess Pawn (hex): &#x2659;</p>
<p>White Chess Pawn (decimal): &#9817;</p>
<p id="point">White Chess Pawn (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

U+2659 is supported in modern browsers when rendered with a font that includes chess piece glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the White Chess Pawn (♙) in chess contexts:

Large glyph
White pawn rank♙♙♙♙♙♙♙♙
Notation1. e4 ♙ e5
Not the same as♟ (U+265F, black chess pawn)
Numeric refs&#x2659; &#9817; \2659

🧠 How It Works

1

Hexadecimal Code

&#x2659; uses the Unicode hexadecimal value 2659 to display the White Chess Pawn. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#9817; uses the decimal Unicode value 9817 to display the same character. A common method for chess piece symbols in HTML.

HTML markup
3

CSS Entity

\2659 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

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:

🌐 Chess websites

Online chess platforms and game applications.

🎮 Chess games

Board interfaces and interactive chess content.

📚 Educational content

Tutorials about pawn structure and opening play.

🎨 Creative content

Graphic design and chess-themed projects.

🎓 Chess lessons

Instructional material about pawn rules and strategy.

🃏 Board game interfaces

Game websites and interfaces featuring chess.

📝 Chess notation

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 \2659 inside 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

1

Type ♙ directly, or use hex/decimal references

&#x2659; &#9817;
2

For CSS stylesheets, use the escape in the content property

\2659
3

Unicode U+2659 — WHITE CHESS PAWN (chess piece range)

4

Black pawn is U+265F (♟) — not interchangeable

❓ Frequently Asked Questions

Use &#x2659; (hex), &#9817; (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 (♟).
In chess websites and applications, chess games and interfaces, educational content and tutorials, chess notation and move annotations, board game interfaces, and any web content that displays or references chess pieces.
HTML entities (&#9817; or &#x2659;) 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.
Named HTML entities are reserved for commonly used ASCII, Latin-1, and widely recognized symbols. Chess piece glyphs like ♙ use numeric codes. Use &#9817; or &#x2659; in HTML, or \2659 in CSS.

Explore More HTML Entities!

Discover 1500+ HTML character references — symbols, punctuation, 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