| Symbol Name | Greek Small Letter Mu |
| Unicode Version | 1.1 |
| Unicode | U+03BC |
| Unicode block | |
| General category | Lowercase Letter (Ll) |
| CSS Code | \03BC |
| Hex Code | 0x03BC |
| HTML Code | μ |
| LaTeX | \mu |
| Symbol | μ |
| URL encode (UTF-8 percent) | %CE%BC |
| Spoken / screen reader name | Greek Small Letter Mu |
| UTF-8 | CE BC |
| UTF-16 | 03BC |
| UTF-32 | 000003BC |
1\documentclass{article}2\usepackage{pifont}3\mu4\end{document}You can type the greek small letter mu symbol on most modern devices with the help of following methods:
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>Greek Small Letter Mu symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |