| Symbol Name | Black Chess King |
| Unicode Version | 1.1 |
| Unicode | U+265A |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \265A |
| Hex Code | 0x265A |
| HTML Code | ♚ |
| LaTeX | \text{BLACKCHESSKING} |
| Symbol | ♚ |
| URL encode (UTF-8 percent) | %E2%99%9A |
| Spoken / screen reader name | Black Chess King |
| UTF-8 | E2 99 9A |
| UTF-16 | 265A |
| UTF-32 | 0000265A |
1\documentclass{article}2\usepackage{pifont}3\text{BLACKCHESSKING}4\end{document}You can type the black chess king symbol on most modern devices with the help of following methods:
Alt + 9818 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "black chess king", or use Unicode Hex Input with 265A.
Ctrl + Shift + U, type 265a, 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-king::before { content: "\265A"; font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif; }1<span>♚</span>Black Chess King symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u265A' or String.fromCodePoint(9818) |
| Python | '\N{BLACK CHESS KING}' or chr(9818) |
| Rust | '\u{265A}' |
| C / C++ | UTF-8 source or wchar_t with U+265A |
| Go | string(rune(0x265A)) |
| Ruby | "\u{265A}" |