ASCII 231
Character 231 (ç)
Latin-1 Supplement
Latin small letter ç. Common in Western European languages.
All encodings at a glance
| Decimal | 231 |
| Hexadecimal | 0xE7 |
| Octal | 0347 |
| Binary | 11100111 |
| HTML numeric entity | ç |
| URL encoding | %E7 |
| UTF-8 bytes | 0xC3 0xA7 |
Code snippets
JavaScript
String.fromCharCode(231); // "ç"
231.toString(16); // "e7"Python
chr(231) # control char ç
ord(chr(231)) # 231
hex(231) # '0xe7'HTML
ç <!-- 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.