DevKits

ASCII 219

Character 219 (Û)

Latin-1 Supplement

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

Common uses & context

Decimal 219 (0xDB) is Character 219, part of the Latin-1 Supplement (128–255). Latin capital letter with diacritic. Used in Northern European and Icelandic alphabets. It renders as 'Û' and its binary byte is 11011011.

This is where single-byte ASCII ends and encoding matters. In Latin-1 (ISO-8859-1) 'Û' is the single byte 0xDB. In UTF-8 — today's default for the web — the same character is the multi-byte sequence 0xC3 0x9B. Treating a Latin-1 byte as UTF-8 (or vice versa) is the usual reason accented letters and symbols turn into mojibake like é or €. The Unicode code point is U+00DB, and in HTML you can write it as Û.

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) -->

Programming notes

  • Single byte 0xDB in Latin-1, but the multi-byte sequence 0xC3 0x9B in UTF-8 — never assume one byte per character above code 127.
  • Unicode code point U+00DB; HTML numeric entity &#219;.
  • If 'Û' shows as mojibake, the encoding declared and the encoding used disagree — align both on UTF-8.

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.

Frequently asked questions

What character is ASCII code 219?

ASCII code 219 is the character 'Û' (Character 219). In hexadecimal it is 0xDB, in octal 0333, and in binary 11011011.

What is 0xDB in ASCII?

Hexadecimal 0xDB equals decimal 219, which is the character 'Û' (Character 219). To convert hex to ASCII yourself, read the two hex digits as a base-16 number (0xDB = 219) and look up that code point.

How do I write the character with code 219 in code?

In JavaScript use String.fromCharCode(219); in Python use chr(219); in HTML use the numeric entity &#219;. In a URL it is percent-encoded as %DB, and in UTF-8 it is stored as the byte sequence 0xC3 0x9B.

Is 'Û' part of standard ASCII?

No. Standard ASCII covers codes 0–127 only. 'Û' is code 219, part of the Latin-1 Supplement (128–255, sometimes called "extended ASCII"). It is a single byte 0xDB in Latin-1 but a multi-byte sequence (0xC3 0x9B) in UTF-8.

Nearby codes

Encode & convert this character