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