ý

ASCII Character: y with acute

ASCII Code 253 · Unicode U+00FD · Hex 0xFD

About the y with acute Character

ASCII code 253 (0xFD) represents the y 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 253
Hexadecimal 0xFD
Octal 375
Binary 11111101
Unicode U+00FD
Unicode Name LATIN SMALL LETTER Y WITH ACUTE
HTML Numeric ý
HTML Entity ý
URL Escape %FD
UTF-8 (Hex) C3 BD
Quoted-Printable =FD

Source Code Examples

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

Navigate

Copied!