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