ASCII 99
Latin Small Letter C (c)
Printable ASCII
Lowercase letter c.
All encodings at a glance
| Decimal | 99 |
| Hexadecimal | 0x63 |
| Octal | 0143 |
| Binary | 01100011 |
| HTML numeric entity | c |
| URL encoding | %63 |
| UTF-8 bytes | 0x63 |
Code snippets
JavaScript
String.fromCharCode(99); // "c"
99.toString(16); // "63"Python
chr(99) # 'c'
ord(chr(99)) # 99
hex(99) # '0x63'HTML
c <!-- numeric entity (no named entity for this character) -->