| Symbol Name | Square Foot |
| Unicode Version | 3.2 |
| Unicode | U+23CD |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \23CD |
| Hex Code | 0x23CD |
| HTML Code | ⏍ |
| LaTeX | \text{SQUAREFOOT} |
| Symbol | ⏍ |
| URL encode (UTF-8 percent) | %E2%8F%8D |
| Spoken / screen reader name | 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}You can type the square foot symbol on most modern devices with the help of following methods:
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>Square Foot symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |