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