ASCII 114
Latin Small Letter R (r)
Printable ASCII
Lowercase letter r.
All encodings at a glance
| Decimal | 114 |
| Hexadecimal | 0x72 |
| Octal | 0162 |
| Binary | 01110010 |
| HTML numeric entity | r |
| URL encoding | %72 |
| UTF-8 bytes | 0x72 |
Code snippets
JavaScript
String.fromCharCode(114); // "r"
114.toString(16); // "72"Python
chr(114) # 'r'
ord(chr(114)) # 114
hex(114) # '0x72'HTML
r <!-- numeric entity (no named entity for this character) -->