| Symboolnaam | Square Foot |
| Unicode-versie | 3.2 |
| Unicode | U+23CD |
| Unicode-blok | |
| Algemene categorie | Other Symbol (So) |
| CSS-code | \23CD |
| Hexadecimale code | 0x23CD |
| HTML-code | ⏍ |
| LaTeX | \text{SQUAREFOOT} |
| Symbool | ⏍ |
| URL-codering (UTF-8 procent) | %E2%8F%8D |
| Uitgesproken naam / schermlezer | 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}Je kunt het square foot-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Square Foot-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |