| Symbol Name | Black Chess Pawn |
| Unicode Version | 1.1 |
| Unicode | U+265F |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \265F |
| Hex Code | 0x265F |
| HTML Code | ♟ |
| LaTeX | \text{BLACKCHESSPAWN} |
| Symbol | ♟ |
| URL encode (UTF-8 percent) | %E2%99%9F |
| Spoken / screen reader name | Black Chess Pawn |
| UTF-8 | E2 99 9F |
| UTF-16 | 265F |
| UTF-32 | 0000265F |
1\documentclass{article}2\usepackage{pifont}3\text{BLACKCHESSPAWN}4\end{document}You can type the black chess pawn symbol on most modern devices with the help of following methods:
Alt + 9823 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "black chess pawn", or use Unicode Hex Input with 265F.
Ctrl + Shift + U, type 265f, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the emoji keyboard.
Paste from this page or use a keyboard with board-game symbol support.
1span.black-chess-pawn::before { content: "\265F"; font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif; }1<span>♟</span>Black Chess Pawn symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u265F' or String.fromCodePoint(9823) |
| Python | '\N{BLACK CHESS PAWN}' or chr(9823) |
| Rust | '\u{265F}' |
| C / C++ | UTF-8 source or wchar_t with U+265F |
| Go | string(rune(0x265F)) |
| Ruby | "\u{265F}" |