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