ú

ASCII Character: u with acute

ASCII Code 250 · Unicode U+00FA · Hex 0xFA

About the u with acute Character

ASCII code 250 (0xFA) 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.

Encoding Details

ASCII Code 250
Hexadecimal 0xFA
Octal 372
Binary 11111010
Unicode U+00FA
Unicode Name LATIN SMALL LETTER U WITH ACUTE
HTML Numeric ú
HTML Entity ú
URL Escape %FA
UTF-8 (Hex) C3 BA
Quoted-Printable =FA

Source Code Examples

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

Navigate

Copied!