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