Û

ASCII Code 219

U with circumflex

About This Character

ASCII code 219 (0xDB) represents the U with circumflex character in the extended ASCII table (128–255). It is a Latin accented character commonly used in European languages such as French, German, Spanish, Portuguese, and Scandinavian languages. The extended ASCII range builds upon the original 128-character ASCII set, adding accented letters, currency symbols, typographic marks, and mathematical symbols. These characters are defined by the Windows-1252 (CP-1252) encoding, which is a superset of ISO 8859-1 (Latin-1). In modern web development, UTF-8 encoding is preferred, but understanding extended ASCII remains important for legacy system compatibility and character encoding troubleshooting.

Character Encoding

Decimal 219
Octal 333
Hexadecimal 0xDB
Binary 11011011
HTML Code Û
HTML Entity Û
Unicode U+00DB
Unicode Name LATIN CAPITAL LETTER U WITH CIRCUMFLEX
URL Escape %DB
Quoted-Printable =DB
UTF-8 (Hex) C3 9B
Category Extended — Latin Accented Letters

How to Type in Code

JavaScript
// Character literal
let char = 'Û';
// Using char code
let char2 = String.fromCharCode(219);
// Unicode escape
let char3 = '\u00DB';
Python
# Character literal
char = 'Û'
# Using chr()
char = chr(219)
# Using ord() to get code
code = ord('Û')  # Returns 219
HTML
<!-- Direct character -->
Û
<!-- HTML entity (numeric) -->
&#219;
<!-- Hex entity -->
&#xDB;
C#
// Character literal
char c = 'Û';
// Using cast
char c2 = (char)219;
// To get code from char
int code = (int)'Û';  // Returns 219

See Also

Copied!