| Nombre del símbolo | Square Cm |
| Versión Unicode | 1.1 |
| Unicode | U+339D |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \339D |
| Código hexadecimal | 0x339D |
| Código HTML | ㎝ |
| LaTeX | \text{CM} |
| Símbolo | ㎝ |
| Codificación URL (porcentaje UTF-8) | %E3%8E%9D |
| Nombre oral / lector de pantalla | Square Cm |
| UTF-8 | E3 8E 9D |
| UTF-16 | 339D |
| UTF-32 | 0000339D |
1\documentclass{article}2\usepackage{pifont}3\text{CM}4\end{document}Puedes escribir el símbolo square cm en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 13213 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "square cm", or use Unicode Hex Input with 339D.
Ctrl + Shift + U, type 339d, 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 unit symbol support.
1span.square-cm::before { content: "\339D"; }1<span>㎝</span>La representación del símbolo Square Cm en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u339D' or String.fromCodePoint(0x339D) |
| Python | '\N{SQUARE CM}' or chr(13213) |
| Rust | '\u{339D}' |
| C / C++ | UTF-8 source or wchar_t with U+339D |
| Go | string(rune(0x339D)) |
| Ruby | "\u339D" |