| Nom du symbole | X In A Rectangle Box |
| Version Unicode | 1.1 |
| Unicode | U+2327 |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \2327 |
| Code hexadécimal | 0x2327 |
| Code HTML | ⌧ |
| LaTeX | \text{XINARECTANGLEBOX} |
| Symbole | ⌧ |
| Encodage URL (pourcent UTF-8) | %E2%8C%A7 |
| Nom oral / lecteur d’écran | X In A Rectangle Box |
| UTF-8 | E2 8C A7 |
| UTF-16 | 2327 |
| UTF-32 | 00002327 |
1\documentclass{article}2\usepackage{pifont}3\text{XINARECTANGLEBOX}4\end{document}Vous pouvez saisir le symbole x in a rectangle box sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 8999 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "x in a rectangle box", or use Unicode Hex Input with 2327.
Ctrl + Shift + U, type 2327, 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 cross mark support.
1span.x-in-a-rectangle-box::before { content: "\2327"; }1<span>⌧</span>La représentation du symbole X In A Rectangle Box dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u2327' or String.fromCodePoint(8999) |
| Python | '\N{X IN A RECTANGLE BOX}' or chr(8999) |
| Rust | '\u{2327}' |
| C / C++ | UTF-8 source or wchar_t with U+2327 |
| Go | string(rune(0x2327)) |
| Ruby | "\u{2327}" |