DevKits

ASCII 99

Latin Small Letter C (c)

Printable ASCII

Lowercase letter c.

All encodings at a glance

Decimal99
Hexadecimal0x63
Octal0143
Binary01100011
HTML numeric entityc
URL encoding%63
UTF-8 bytes0x63

Code snippets

JavaScript

String.fromCharCode(99); // "c"
99.toString(16); // "63"

Python

chr(99)           # 'c'
ord(chr(99))      # 99
hex(99)           # '0x63'

HTML

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

Nearby codes