| Symbol Name | Micro Sign |
| Unicode Version | 1.1 |
| Unicode | U+00B5 |
| Unicode block | |
| General category | Lowercase Letter (Ll) |
| CSS Code | \00B5 |
| Hex Code | 0x00B5 |
| HTML Code | µ |
| LaTeX | \mathrm{µ} |
| Symbol | µ |
| URL encode (UTF-8 percent) | %C2%B5 |
| Spoken / screen reader name | Micro Sign |
| UTF-8 | C2 B5 |
| UTF-16 | 00B5 |
| UTF-32 | 000000B5 |
1\documentclass{article}2\usepackage{pifont}3\mathrm{µ}4\end{document}You can type the micro sign symbol on most modern devices with the help of following methods:
Alt + 181 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "micro sign", or use Unicode Hex Input with 00B5.
Ctrl + Shift + U, type 00b5, 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.micro-sign::before { content: "\00B5"; }1<span>µ</span>Micro Sign symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u00B5' or String.fromCodePoint(0x00B5) |
| Python | '\N{MICRO SIGN}' or chr(181) |
| Rust | '\u{00B5}' |
| C / C++ | UTF-8 source or wchar_t with U+00B5 |
| Go | string(rune(0x00B5)) |
| Ruby | "\u00B5" |