| Nome del simbolo | Square In |
| Versione Unicode | 1.1 |
| Unicode | U+33CC |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \33CC |
| Codice esadecimale | 0x33CC |
| Codice HTML | ㏌ |
| LaTeX | \text{IN} |
| Simbolo | ㏌ |
| Codifica URL (percentuale UTF-8) | %E3%8F%8C |
| Nome parlato / screen reader | Square In |
| UTF-8 | E3 8F 8C |
| UTF-16 | 33CC |
| UTF-32 | 000033CC |
1\documentclass{article}2\usepackage{pifont}3\text{IN}4\end{document}Puoi digitare il simbolo square in sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 13260 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "square in", or use Unicode Hex Input with 33CC.
Ctrl + Shift + U, type 33cc, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with unit symbol support.
1span.square-in::before { content: "\33CC"; }1<span>㏌</span>La rappresentazione del simbolo Square In nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u33CC' or String.fromCodePoint(0x33CC) |
| Python | '\N{SQUARE IN}' or chr(13260) |
| Rust | '\u{33CC}' |
| C / C++ | UTF-8 source or wchar_t with U+33CC |
| Go | string(rune(0x33CC)) |
| Ruby | "\u33CC" |