DevKits

ASCII 252

Character 252 (ü)

Latin-1 Supplement

Latin small letter with diacritic. Used in Northern European alphabets.

All encodings at a glance

Decimal252
Hexadecimal0xFC
Octal0374
Binary11111100
HTML numeric entityü
URL encoding%FC
UTF-8 bytes0xC3 0xBC

Code snippets

JavaScript

String.fromCharCode(252); // "ü"
252.toString(16); // "fc"

Python

chr(252)           # control char ü
ord(chr(252))      # 252
hex(252)           # '0xfc'

HTML

&#252;   <!-- 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.

Nearby codes