| Nom du symbole | Square Foot |
| Version Unicode | 3.2 |
| Unicode | U+23CD |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \23CD |
| Code hexadécimal | 0x23CD |
| Code HTML | ⏍ |
| LaTeX | \text{SQUAREFOOT} |
| Symbole | ⏍ |
| Encodage URL (pourcent UTF-8) | %E2%8F%8D |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole square foot sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Square Foot dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |