| Nome del simbolo | Greek Capital Letter Mu |
| Versione Unicode | 1.1 |
| Unicode | U+039C |
| Blocco Unicode | |
| Categoria generale | Uppercase Letter (Lu) |
| Codice CSS | \039C |
| Codice esadecimale | 0x039C |
| Codice HTML | Μ |
| LaTeX | M |
| Simbolo | Μ |
| Codifica URL (percentuale UTF-8) | %CE%9C |
| Nome parlato / screen reader | Greek Capital Letter Mu |
| UTF-8 | CE 9C |
| UTF-16 | 039C |
| UTF-32 | 0000039C |
1\documentclass{article}2\usepackage{pifont}3M4\end{document}Puoi digitare il simbolo greek capital letter mu sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 924 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek capital letter mu", or use Unicode Hex Input with 039C.
Ctrl + Shift + U, type 039c, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Greek keyboard.
Paste from this page or use a keyboard with Greek letter support.
1span.capital-mu::before { content: "\039C"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>Μ</span>La rappresentazione del simbolo Greek Capital Letter Mu nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u039C' or String.fromCodePoint(924) |
| Python | '\N{GREEK CAPITAL LETTER MU}' or chr(924) |
| Rust | '\u{039C}' |
| C / C++ | UTF-8 source or wchar_t with U+039C |
| Go | string(rune(0x039C)) |
| Ruby | "\u{039C}" |