DevKits

ASCII 82

Latin Capital Letter R (R)

Printable ASCII

Uppercase letter R.

All encodings at a glance

Decimal82
Hexadecimal0x52
Octal0122
Binary01010010
HTML numeric entityR
URL encoding%52
UTF-8 bytes0x52

Code snippets

JavaScript

String.fromCharCode(82); // "R"
82.toString(16); // "52"

Python

chr(82)           # 'R'
ord(chr(82))      # 82
hex(82)           # '0x52'

HTML

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

Nearby codes