DevKits

ASCII 67

Latin Capital Letter C (C)

Printable ASCII

Uppercase letter C.

All encodings at a glance

Decimal67
Hexadecimal0x43
Octal0103
Binary01000011
HTML numeric entityC
URL encoding%43
UTF-8 bytes0x43

Code snippets

JavaScript

String.fromCharCode(67); // "C"
67.toString(16); // "43"

Python

chr(67)           # 'C'
ord(chr(67))      # 67
hex(67)           # '0x43'

HTML

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

Nearby codes