| Nom du symbole | Square Ms |
| Version Unicode | 1.1 |
| Unicode | U+33B3 |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \33B3 |
| Code hexadécimal | 0x33B3 |
| Code HTML | ㎳ |
| LaTeX | \text{MS} |
| Symbole | ㎳ |
| Encodage URL (pourcent UTF-8) | %E3%8E%B3 |
| Nom oral / lecteur d’écran | Square Ms |
| UTF-8 | E3 8E B3 |
| UTF-16 | 33B3 |
| UTF-32 | 000033B3 |
1\documentclass{article}2\usepackage{pifont}3\text{MS}4\end{document}Vous pouvez saisir le symbole square ms sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 13235 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "square ms", or use Unicode Hex Input with 33B3.
Ctrl + Shift + U, type 33b3, 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-ms::before { content: "\33B3"; }1<span>㎳</span>La représentation du symbole Square Ms dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u33B3' or String.fromCodePoint(0x33B3) |
| Python | '\N{SQUARE MS}' or chr(13235) |
| Rust | '\u{33B3}' |
| C / C++ | UTF-8 source or wchar_t with U+33B3 |
| Go | string(rune(0x33B3)) |
| Ruby | "\u33B3" |