ASCII 249
Character 249 (ù)
Latin-1 Supplement
Latin small letter with diacritic. Used in Northern European alphabets.
All encodings at a glance
| Decimal | 249 |
| Hexadecimal | 0xF9 |
| Octal | 0371 |
| Binary | 11111001 |
| HTML numeric entity | ù |
| URL encoding | %F9 |
| UTF-8 bytes | 0xC3 0xB9 |
Code snippets
JavaScript
String.fromCharCode(249); // "ù"
249.toString(16); // "f9"Python
chr(249) # control char ù
ord(chr(249)) # 249
hex(249) # '0xf9'HTML
ù <!-- numeric entity (no named entity for this character) -->Unicode & UTF-8 note
In Unicode this is U+00F9. In UTF-8 it encodes to the byte sequence 0xC3 0xB9. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xF9, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.