| Nombre del símbolo | Black Chess Queen |
| Versión Unicode | 1.1 |
| Unicode | U+265B |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \265B |
| Código hexadecimal | 0x265B |
| Código HTML | ♛ |
| LaTeX | \text{BLACKCHESSQUEEN} |
| Símbolo | ♛ |
| Codificación URL (porcentaje UTF-8) | %E2%99%9B |
| Nombre oral / lector de pantalla | Black Chess Queen |
| UTF-8 | E2 99 9B |
| UTF-16 | 265B |
| UTF-32 | 0000265B |
1\documentclass{article}2\usepackage{pifont}3\text{BLACKCHESSQUEEN}4\end{document}Puedes escribir el símbolo black chess queen en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 9819 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "black chess queen", or use Unicode Hex Input with 265B.
Ctrl + Shift + U, type 265b, 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-queen::before { content: "\265B"; font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif; }1<span>♛</span>La representación del símbolo Black Chess Queen en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u265B' or String.fromCodePoint(9819) |
| Python | '\N{BLACK CHESS QUEEN}' or chr(9819) |
| Rust | '\u{265B}' |
| C / C++ | UTF-8 source or wchar_t with U+265B |
| Go | string(rune(0x265B)) |
| Ruby | "\u{265B}" |