DevKits

ASCII 219

Character 219 (Û)

Latin-1 Supplement

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

All encodings at a glance

Decimal219
Hexadecimal0xDB
Octal0333
Binary11011011
HTML numeric entityÛ
URL encoding%DB
UTF-8 bytes0xC3 0x9B

Code snippets

JavaScript

String.fromCharCode(219); // "Û"
219.toString(16); // "db"

Python

chr(219)           # control char Û
ord(chr(219))      # 219
hex(219)           # '0xdb'

HTML

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

Nearby codes