DevKits

ASCII 231

Character 231 (ç)

Latin-1 Supplement

Latin small letter ç. Common in Western European languages.

All encodings at a glance

Decimal231
Hexadecimal0xE7
Octal0347
Binary11100111
HTML numeric entityç
URL encoding%E7
UTF-8 bytes0xC3 0xA7

Code snippets

JavaScript

String.fromCharCode(231); // "ç"
231.toString(16); // "e7"

Python

chr(231)           # control char ç
ord(chr(231))      # 231
hex(231)           # '0xe7'

HTML

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

Unicode & UTF-8 note

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

Nearby codes