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