| Symboolnaam | Black Chess Rook |
| Unicode-versie | 1.1 |
| Unicode | U+265C |
| Unicode-blok | |
| Algemene categorie | Other Symbol (So) |
| CSS-code | \265C |
| Hexadecimale code | 0x265C |
| HTML-code | ♜ |
| LaTeX | \text{BLACKCHESSROOK} |
| Symbool | ♜ |
| URL-codering (UTF-8 procent) | %E2%99%9C |
| Uitgesproken naam / schermlezer | 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}Je kunt het black chess rook-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Black Chess Rook-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |