ASCII Code 252 · Unicode U+00FC · Hex 0xFC
ASCII code 252 (0xFC) represents the u with diaeresis 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.
| ASCII Code | 252 |
| Hexadecimal | 0xFC |
| Octal | 374 |
| Binary | 11111100 |
| Unicode | U+00FC |
| Unicode Name | LATIN SMALL LETTER U WITH DIAERESIS |
| HTML Numeric | ü |
| HTML Entity | ü |
| URL Escape | %FC |
| UTF-8 (Hex) | C3 BC |
| Quoted-Printable | =FC |
// Character literal
let char = 'ü';
// Using char code
let char2 = String.fromCharCode(252);
// Unicode escape
let char3 = '\u00FC'; # Character literal
char = 'ü'
# Using chr()
char = chr(252)
# Using ord() to get code
code = ord('ü') # Returns 252 <!-- Direct character -->
ü
<!-- HTML entity (numeric) -->
ü
<!-- Hex entity -->
ü // Character literal
char c = 'ü';
// Using cast
char c2 = (char)252;
// To get code from char
int code = (int)'ü'; // Returns 252