Ú

ASCII Code 218

U with acute

About This Character

ASCII code 218 (0xDA) represents the U with acute 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 218
Octal 332
Hexadecimal 0xDA
Binary 11011010
HTML Code Ú
HTML Entity Ú
Unicode U+00DA
Unicode Name LATIN CAPITAL LETTER U WITH ACUTE
URL Escape %DA
Quoted-Printable =DA
UTF-8 (Hex) C3 9A
Category Extended — Latin Accented Letters

How to Type in Code

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

See Also

Copied!