| Nome del simbolo | X In A Rectangle Box |
| Versione Unicode | 1.1 |
| Unicode | U+2327 |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \2327 |
| Codice esadecimale | 0x2327 |
| Codice HTML | ⌧ |
| LaTeX | \text{XINARECTANGLEBOX} |
| Simbolo | ⌧ |
| Codifica URL (percentuale UTF-8) | %E2%8C%A7 |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo x in a rectangle box sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo X In A Rectangle Box nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |