s

ASCII Character: Lowercase s

ASCII Code 115 · Unicode U+0073 · Hex 0x73

s lowercase-s

About the Lowercase s Character

ASCII code 115 (0x73) represents the Lowercase s character "s". The lowercase letter "s" has ASCII code 115. Lowercase letters a–z span codes 97–122. Subtracting 32 from a lowercase letter’s ASCII code gives the corresponding uppercase letter (e.g., 'a' at 97 - 32 = 'A' at 65). The printable ASCII characters (codes 32–126) include the space, digits, uppercase and lowercase Latin letters, and common punctuation symbols. These 95 characters form the foundation of text representation in virtually all computing systems and are universally supported across all character encodings, programming languages, and operating systems.

Encoding Details

ASCII Code 115
Hexadecimal 0x73
Octal 163
Binary 01110011
Unicode U+0073
Unicode Name LATIN SMALL LETTER S
HTML Numeric s
HTML Entity
URL Escape %73
UTF-8 (Hex) 73
Quoted-Printable s

Source Code Examples

JavaScript
// Character literal
let char = 's';
// Using char code
let char2 = String.fromCharCode(115);
// Unicode escape
let char3 = '\x73';
Python
# Character literal
char = 's'
# Using chr()
char = chr(115)
# Using ord() to get code
code = ord('s')  # Returns 115
HTML
<!-- Direct character -->
s
<!-- HTML entity (numeric) -->
&#115;
<!-- Hex entity -->
&#x73;
C#
// Character literal
char c = 's';
// Using cast
char c2 = (char)115;
// To get code from char
int code = (int)'s';  // Returns 115

Navigate

Copied!