| Nombre del símbolo | Square Foot |
| Versión Unicode | 3.2 |
| Unicode | U+23CD |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \23CD |
| Código hexadecimal | 0x23CD |
| Código HTML | ⏍ |
| LaTeX | \text{SQUAREFOOT} |
| Símbolo | ⏍ |
| Codificación URL (porcentaje UTF-8) | %E2%8F%8D |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo square foot en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Square Foot en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |