DevKits

ASCII 250

Character 250 (ú)

Latin-1 Supplement

Latin small letter with diacritic. Used in Northern European alphabets.

All encodings at a glance

Decimal250
Hexadecimal0xFA
Octal0372
Binary11111010
HTML numeric entityú
URL encoding%FA
UTF-8 bytes0xC3 0xBA

Code snippets

JavaScript

String.fromCharCode(250); // "ú"
250.toString(16); // "fa"

Python

chr(250)           # control char ú
ord(chr(250))      # 250
hex(250)           # '0xfa'

HTML

&#250;   <!-- 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.

Nearby codes