DevKits

ASCII 184

Cedilla (¸)

Latin-1 Supplement

Latin-1 character.

All encodings at a glance

Decimal184
Hexadecimal0xB8
Octal0270
Binary10111000
HTML numeric entity¸
HTML named entity¸
URL encoding%B8
UTF-8 bytes0xC2 0xB8

Code snippets

JavaScript

String.fromCharCode(184); // "¸"
184.toString(16); // "b8"

Python

chr(184)           # control char ¸
ord(chr(184))      # 184
hex(184)           # '0xb8'

HTML

&cedil;   <!-- named entity -->
&#184;   <!-- numeric entity -->

Unicode & UTF-8 note

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

Nearby codes