ASCII 115
Latin Small Letter S (s)
Printable ASCII
Lowercase letter s.
All encodings at a glance
| Decimal | 115 |
| Hexadecimal | 0x73 |
| Octal | 0163 |
| Binary | 01110011 |
| HTML numeric entity | s |
| URL encoding | %73 |
| UTF-8 bytes | 0x73 |
Code snippets
JavaScript
String.fromCharCode(115); // "s"
115.toString(16); // "73"Python
chr(115) # 's'
ord(chr(115)) # 115
hex(115) # '0x73'HTML
s <!-- numeric entity (no named entity for this character) -->