ASCII Code 249 · Unicode U+00F9 · Hex 0xF9
ASCII code 249 (0xF9) represents the u with grave 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 | 249 |
| Hexadecimal | 0xF9 |
| Octal | 371 |
| Binary | 11111001 |
| Unicode | U+00F9 |
| Unicode Name | LATIN SMALL LETTER U WITH GRAVE |
| HTML Numeric | ù |
| HTML Entity | ù |
| URL Escape | %F9 |
| UTF-8 (Hex) | C3 B9 |
| Quoted-Printable | =F9 |
// Character literal
let char = 'ù';
// Using char code
let char2 = String.fromCharCode(249);
// Unicode escape
let char3 = '\u00F9'; # Character literal
char = 'ù'
# Using chr()
char = chr(249)
# Using ord() to get code
code = ord('ù') # Returns 249 <!-- Direct character -->
ù
<!-- HTML entity (numeric) -->
ù
<!-- Hex entity -->
ù // Character literal
char c = 'ù';
// Using cast
char c2 = (char)249;
// To get code from char
int code = (int)'ù'; // Returns 249