DevKits

ASCII 251

Character 251 (û)

Latin-1 Supplement

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

All encodings at a glance

Decimal251
Hexadecimal0xFB
Octal0373
Binary11111011
HTML numeric entityû
URL encoding%FB
UTF-8 bytes0xC3 0xBB

Code snippets

JavaScript

String.fromCharCode(251); // "û"
251.toString(16); // "fb"

Python

chr(251)           # control char û
ord(chr(251))      # 251
hex(251)           # '0xfb'

HTML

&#251;   <!-- numeric entity (no named entity for this character) -->

Unicode & UTF-8 note

In Unicode this is U+00FB. In UTF-8 it encodes to the byte sequence 0xC3 0xBB. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xFB, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.

Nearby codes