HTML Entity for White Chess Pawn (♙)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+2659

What Is White Chess Pawn?

White Chess Pawn (♙) is the Unicode character at U+2659 (WHITE CHESS PAWN) in Miscellaneous Symbols. HTML5 has no named entity — use hex or decimal. Use it for chess boards, notation, tutorials, and game UIs.

Remember
Character     ♙
Unicode       U+2659
Named entity  (none)
Hex entity    ♙
Decimal       ♙
CSS escape    \2659
Not the same  ♘ (knight) · ♕ (queen) · ♟ (black pawn)

Hex, decimal, CSS, and a typed character all produce the same glyph: ♙. Prefer ♙ or ♙ in HTML markup. For the white knight see White Chess Knight; for the queen see White Chess Queen.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityNoneUse numeric or type the character
Hex entity♙HTML markup (preferred)
Decimal entity♙HTML markup
CSS escape\2659Stylesheet content (4 hex digits)
Direct character♙UTF-8 HTML text

When to Use Which

SituationUse
White chess pawn♙ or type ♙
Numeric-only markup♙ or ♙
Generated text via ::before / ::aftercontent: "\2659"
White chess knight (♘)Use ♘ (U+2658)
Black chess pawn (♟)Use ♟ (U+265F)

Live Preview

♙ in context and beside other chess pieces.

Example Pawn ♙ on e2
Large glyph ♙
Hex entity ♙ → ♙
vs look-alikes ♙  |  ♘  |  ♕  |  ♟
With entities Hex: ♙ | Decimal: ♙

Complete HTML Example

One page that shows White Chess Pawn with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to display ♙ in HTML and CSS. No named entity exists.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>White Chess Pawn (♙)</title>
  <style>
    #point::after {
      content: "\2659";
    }
  </style>
</head>
<body>
  <p>Built with Hex: &#x2659;</p>
  <p>Built with Decimal: &#9817;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ♙</p>
  <p>Label: Piece &#x2659;</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex / decimal: U+2659 → &#x2659; or &#9817;. The browser turns either into ♙.

2. Typed: in a UTF-8 document you can paste ♙ directly — same glyph, no entity.

3. CSS: use \2659 in content (four hex digits; not an HTML entity). #point::after appends that ♙ after the paragraph text.

4. Look-alikes: white knight is ♘ (U+2658); black pawn is ♟ (U+265F) — different characters.

Pitfalls & Tips

Common mistakes when working with White Chess Pawn.

Named

There is no named entity

HTML5 does not define a name for U+2659. Use &#x2659; or &#9817;.

vs knight

Not the white knight

U+2658 (♘) is a different piece. See White Chess Knight.

vs black

Not the black pawn

U+265F (♟) is the black pawn. See Black Chess Pawn.

Fonts

Need chess glyph coverage

Some fonts omit chess pieces. Prefer fonts that cover Miscellaneous Symbols chess glyphs (U+2654–U+265F).

CSS vs HTML

Do not mix escapes

\2659 belongs in CSS strings. &#x2659; / &#9817; belong in HTML.

Encoding

Declare UTF-8

If you type ♙ directly, keep <meta charset="UTF-8"> so the file is not misread.

Browser Support

White Chess Pawn (U+2659) and its entity forms (&#x2659;, &#9817;, CSS \\2659) are supported in all mainstream browsers when the page is UTF-8 and the font covers chess symbols.

✓ Universal support

White Chess Pawn (&#x2659;)

Encode with hex, decimal, CSS escape, or type the character — same Unicode code point everywhere. No named entity.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer IE 9+
Yes*
U+2659 Full support

Bottom line: Prefer &#x2659; in HTML text. Use &#9817; as an equivalent, and \\2659 only inside CSS content. Glyph display depends on font coverage.

Key Takeaways

  • Unicode: this piece is U+2659 (decimal 9817) — glyph ♙.
  • HTML: prefer &#x2659; — also &#9817;. No named entity.
  • CSS: use \2659 inside content for generated text.
  • Watch out: ♙ ≠ ♘ ≠ ♟.

One line: U+2659 → &#x2659; / &#9817; / CSS \2659 (no named entity).

Frequently Asked Questions

Use &#x2659; (hex), &#9817; (decimal), type ♙ directly in UTF-8, or the CSS escape \2659 in the content property. There is no named HTML entity. Prefer &#x2659; for readable markup.
U+2659 (WHITE CHESS PAWN). Hex 2659, decimal 9817. It belongs to the Miscellaneous Symbols block (U+2600–U+26FF), chess pieces range.
No. HTML5 does not define a named form for chess pieces. Use numeric references &#x2659; or &#9817;, or type ♙ in UTF-8.
U+2659 is the white pawn (♙). U+2658 is the white knight (♘). U+265F is the black pawn (♟). Use the code point that matches the piece and color you need.
Use it in chess boards, notation, tutorials, and game UIs when you need the white pawn glyph. Prefer other white-piece code points for king, queen, rook, bishop, or knight.
HTML entities (&#9817; or &#x2659;) go in markup. The CSS escape \2659 is used in stylesheets (usually in the content property of ::before/::after). Prefer four hex digits in CSS.

Did you know?

White Chess Pawn is Unicode U+2659 (decimal 9817) — glyph ♙ (WHITE CHESS PAWN) in Miscellaneous Symbols. HTML5 has no named entity — use &#x2659; or &#9817;. Do not confuse it with White Chess Knight U+2658 (♘), White Chess Queen U+2655 (♕), or Black Chess Pawn U+265F (♟).

Next: White Chess Queen

Continue with the White Chess Queen entity tutorial.

Continue tutorial →

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