DevKits

ASCII 220

Character 220 (Ü)

Latin-1 Supplement

Latin capital letter with diacritic. Used in Northern European and Icelandic alphabets.

All encodings at a glance

Decimal220
Hexadecimal0xDC
Octal0334
Binary11011100
HTML numeric entityÜ
URL encoding%DC
UTF-8 bytes0xC3 0x9C

Code snippets

JavaScript

String.fromCharCode(220); // "Ü"
220.toString(16); // "dc"

Python

chr(220)           # control char Ü
ord(chr(220))      # 220
hex(220)           # '0xdc'

HTML

&#220;   <!-- numeric entity (no named entity for this character) -->

Unicode & UTF-8 note

In Unicode this is U+00DC. In UTF-8 it encodes to the byte sequence 0xC3 0x9C. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xDC, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.

Nearby codes