| Nombre del símbolo | Black Chess Pawn |
| Versión Unicode | 1.1 |
| Unicode | U+265F |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \265F |
| Código hexadecimal | 0x265F |
| Código HTML | ♟ |
| LaTeX | \text{BLACKCHESSPAWN} |
| Símbolo | ♟ |
| Codificación URL (porcentaje UTF-8) | %E2%99%9F |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo black chess pawn en la mayoría de dispositivos modernos con los siguientes métodos:
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>La representación del símbolo Black Chess Pawn en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |