| Symboolnaam | Greek Small Letter Mu |
| Unicode-versie | 1.1 |
| Unicode | U+03BC |
| Unicode-blok | |
| Algemene categorie | Lowercase Letter (Ll) |
| CSS-code | \03BC |
| Hexadecimale code | 0x03BC |
| HTML-code | μ |
| LaTeX | \mu |
| Symbool | μ |
| URL-codering (UTF-8 procent) | %CE%BC |
| Uitgesproken naam / schermlezer | Greek Small Letter Mu |
| UTF-8 | CE BC |
| UTF-16 | 03BC |
| UTF-32 | 000003BC |
1\documentclass{article}2\usepackage{pifont}3\mu4\end{document}Je kunt het greek small letter mu-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 956 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek small letter mu", or use Unicode Hex Input with 03BC.
Ctrl + Shift + U, type 03bc, 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.mu::before { content: "\03BC"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>μ</span>De weergave van het Greek Small Letter Mu-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u03BC' or String.fromCodePoint(956) |
| Python | '\N{GREEK SMALL LETTER MU}' or chr(956) |
| Rust | '\u{03BC}' |
| C / C++ | UTF-8 source or wchar_t with U+03BC |
| Go | string(rune(0x03BC)) |
| Ruby | "\u{03BC}" |