DevKits

ASCII 115

Latin Small Letter S (s)

Printable ASCII

Lowercase letter s.

All encodings at a glance

Decimal115
Hexadecimal0x73
Octal0163
Binary01110011
HTML numeric entitys
URL encoding%73
UTF-8 bytes0x73

Code snippets

JavaScript

String.fromCharCode(115); // "s"
115.toString(16); // "73"

Python

chr(115)           # 's'
ord(chr(115))      # 115
hex(115)           # '0x73'

HTML

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

Nearby codes