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