DevKits

ASCII 254

Character 254 (þ)

Latin-1 Supplement

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

All encodings at a glance

Decimal254
Hexadecimal0xFE
Octal0376
Binary11111110
HTML numeric entityþ
URL encoding%FE
UTF-8 bytes0xC3 0xBE

Code snippets

JavaScript

String.fromCharCode(254); // "þ"
254.toString(16); // "fe"

Python

chr(254)           # control char þ
ord(chr(254))      # 254
hex(254)           # '0xfe'

HTML

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

Unicode & UTF-8 note

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

Nearby codes