ASCII 252
Character 252 (ü)
Latin-1 Supplement
Latin small letter with diacritic. Used in Northern European alphabets.
All encodings at a glance
| Decimal | 252 |
| Hexadecimal | 0xFC |
| Octal | 0374 |
| Binary | 11111100 |
| HTML numeric entity | ü |
| URL encoding | %FC |
| UTF-8 bytes | 0xC3 0xBC |
Code snippets
JavaScript
String.fromCharCode(252); // "ü"
252.toString(16); // "fc"Python
chr(252) # control char ü
ord(chr(252)) # 252
hex(252) # '0xfc'HTML
ü <!-- numeric entity (no named entity for this character) -->Unicode & UTF-8 note
In Unicode this is U+00FC. In UTF-8 it encodes to the byte sequence 0xC3 0xBC. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xFC, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.