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