| Nome del simbolo | Square Foot |
| Versione Unicode | 3.2 |
| Unicode | U+23CD |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \23CD |
| Codice esadecimale | 0x23CD |
| Codice HTML | ⏍ |
| LaTeX | \text{SQUAREFOOT} |
| Simbolo | ⏍ |
| Codifica URL (percentuale UTF-8) | %E2%8F%8D |
| Nome parlato / screen reader | Square Foot |
| UTF-8 | E2 8F 8D |
| UTF-16 | 23CD |
| UTF-32 | 000023CD |
1\documentclass{article}2\usepackage{pifont}3\text{SQUAREFOOT}4\end{document}Puoi digitare il simbolo square foot sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 9165 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "square foot", or use Unicode Hex Input with 23CD.
Ctrl + Shift + U, type 23cd, 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 geometric symbol support.
1span.square-foot::before { content: "\23CD"; }1<span>⏍</span>La rappresentazione del simbolo Square Foot nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u23CD' or String.fromCodePoint(9165) |
| Python | '\N{SQUARE FOOT}' or chr(9165) |
| Rust | '\u{23CD}' |
| C / C++ | UTF-8 source or wchar_t with U+23CD |
| Go | string(rune(0x23CD)) |
| Ruby | "\u{23CD}" |