ASCII 67
Latin Capital Letter C (C)
Printable ASCII
Uppercase letter C.
All encodings at a glance
| Decimal | 67 |
| Hexadecimal | 0x43 |
| Octal | 0103 |
| Binary | 01000011 |
| HTML numeric entity | C |
| URL encoding | %43 |
| UTF-8 bytes | 0x43 |
Code snippets
JavaScript
String.fromCharCode(67); // "C"
67.toString(16); // "43"Python
chr(67) # 'C'
ord(chr(67)) # 67
hex(67) # '0x43'HTML
C <!-- numeric entity (no named entity for this character) -->