ASCII 103
Latin Small Letter G (g)
Printable ASCII
Lowercase letter g.
All encodings at a glance
| Decimal | 103 |
| Hexadecimal | 0x67 |
| Octal | 0147 |
| Binary | 01100111 |
| HTML numeric entity | g |
| URL encoding | %67 |
| UTF-8 bytes | 0x67 |
Code snippets
JavaScript
String.fromCharCode(103); // "g"
103.toString(16); // "67"Python
chr(103) # 'g'
ord(chr(103)) # 103
hex(103) # '0x67'HTML
g <!-- numeric entity (no named entity for this character) -->