DevKits

ASCII 136

Character 136 (ˆ)

Latin-1 Supplement

Unassigned in Latin-1 / part of the C1 control block. Not used in modern text encoding; browsers accept these code points but they carry no display glyph.

All encodings at a glance

Decimal136
Hexadecimal0x88
Octal0210
Binary10001000
HTML numeric entityˆ
URL encoding%88
UTF-8 bytes0xC2 0x88

Code snippets

JavaScript

String.fromCharCode(136); // "ˆ"
136.toString(16); // "88"

Python

chr(136)           # control char ˆ
ord(chr(136))      # 136
hex(136)           # '0x88'

HTML

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

Unicode & UTF-8 note

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

Nearby codes