ASCII 181
Micro Sign (µ)
Latin-1 Supplement
Latin-1 character.
All encodings at a glance
| Decimal | 181 |
| Hexadecimal | 0xB5 |
| Octal | 0265 |
| Binary | 10110101 |
| HTML numeric entity | µ |
| HTML named entity | µ |
| URL encoding | %B5 |
| UTF-8 bytes | 0xC2 0xB5 |
Code snippets
JavaScript
String.fromCharCode(181); // "µ"
181.toString(16); // "b5"Python
chr(181) # control char µ
ord(chr(181)) # 181
hex(181) # '0xb5'HTML
µ <!-- named entity -->
µ <!-- numeric entity -->Unicode & UTF-8 note
In Unicode this is U+00B5. In UTF-8 it encodes to the byte sequence 0xC2 0xB5. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xB5, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.