DevKits

ASCII 114

Latin Small Letter R (r)

Printable ASCII

Lowercase letter r.

All encodings at a glance

Decimal114
Hexadecimal0x72
Octal0162
Binary01110010
HTML numeric entityr
URL encoding%72
UTF-8 bytes0x72

Code snippets

JavaScript

String.fromCharCode(114); // "r"
114.toString(16); // "72"

Python

chr(114)           # 'r'
ord(chr(114))      # 114
hex(114)           # '0x72'

HTML

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

Nearby codes