ASCII 220
Character 220 (Ü)
Latin-1 Supplement
Latin capital letter with diacritic. Used in Northern European and Icelandic alphabets.
All encodings at a glance
| Decimal | 220 |
| Hexadecimal | 0xDC |
| Octal | 0334 |
| Binary | 11011100 |
| HTML numeric entity | Ü |
| URL encoding | %DC |
| UTF-8 bytes | 0xC3 0x9C |
Code snippets
JavaScript
String.fromCharCode(220); // "Ü"
220.toString(16); // "dc"Python
chr(220) # control char Ü
ord(chr(220)) # 220
hex(220) # '0xdc'HTML
Ü <!-- 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.