| Symboolnaam | Black Chess Knight |
| Unicode-versie | 1.1 |
| Unicode | U+265E |
| Unicode-blok | |
| Algemene categorie | Other Symbol (So) |
| CSS-code | \265E |
| Hexadecimale code | 0x265E |
| HTML-code | ♞ |
| LaTeX | \text{BLACKCHESSKNIGHT} |
| Symbool | ♞ |
| URL-codering (UTF-8 procent) | %E2%99%9E |
| Uitgesproken naam / schermlezer | Black Chess Knight |
| UTF-8 | E2 99 9E |
| UTF-16 | 265E |
| UTF-32 | 0000265E |
1\documentclass{article}2\usepackage{pifont}3\text{BLACKCHESSKNIGHT}4\end{document}Je kunt het black chess knight-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 9822 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "black chess knight", or use Unicode Hex Input with 265E.
Ctrl + Shift + U, type 265e, 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-knight::before { content: "\265E"; font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif; }1<span>♞</span>De weergave van het Black Chess Knight-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u265E' or String.fromCodePoint(9822) |
| Python | '\N{BLACK CHESS KNIGHT}' or chr(9822) |
| Rust | '\u{265E}' |
| C / C++ | UTF-8 source or wchar_t with U+265E |
| Go | string(rune(0x265E)) |
| Ruby | "\u{265E}" |