DevKits

ASCII 83

Latin Capital Letter S (S)

Printable ASCII

Uppercase letter S.

All encodings at a glance

Decimal83
Hexadecimal0x53
Octal0123
Binary01010011
HTML numeric entityS
URL encoding%53
UTF-8 bytes0x53

Code snippets

JavaScript

String.fromCharCode(83); // "S"
83.toString(16); // "53"

Python

chr(83)           # 'S'
ord(chr(83))      # 83
hex(83)           # '0x53'

HTML

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

Nearby codes