DevKits

ASCII 103

Latin Small Letter G (g)

Printable ASCII

Lowercase letter g.

All encodings at a glance

Decimal103
Hexadecimal0x67
Octal0147
Binary01100111
HTML numeric entityg
URL encoding%67
UTF-8 bytes0x67

Code snippets

JavaScript

String.fromCharCode(103); // "g"
103.toString(16); // "67"

Python

chr(103)           # 'g'
ord(chr(103))      # 103
hex(103)           # '0x67'

HTML

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

Nearby codes