| Symbol Name | Black Chess Queen |
| Unicode Version | 1.1 |
| Unicode | U+265B |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \265B |
| Hex Code | 0x265B |
| HTML Code | ♛ |
| LaTeX | \text{BLACKCHESSQUEEN} |
| Symbol | ♛ |
| URL encode (UTF-8 percent) | %E2%99%9B |
| Spoken / screen reader name | 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}You can type the black chess queen symbol on most modern devices with the help of following methods:
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>Black Chess Queen symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |