| Symboolnaam | Black Chess Pawn |
| Unicode-versie | 1.1 |
| Unicode | U+265F |
| Unicode-blok | |
| Algemene categorie | Other Symbol (So) |
| CSS-code | \265F |
| Hexadecimale code | 0x265F |
| HTML-code | ♟ |
| LaTeX | \text{BLACKCHESSPAWN} |
| Symbool | ♟ |
| URL-codering (UTF-8 procent) | %E2%99%9F |
| Uitgesproken naam / schermlezer | 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}Je kunt het black chess pawn-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Black Chess Pawn-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |