h

ASCII Character: Lowercase h

ASCII Code 104 · Unicode U+0068 · Hex 0x68

h lowercase-h

About the Lowercase h Character

ASCII code 104 (0x68) represents the Lowercase h character "h". The lowercase letter "h" has ASCII code 104. 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 104
Hexadecimal 0x68
Octal 150
Binary 01101000
Unicode U+0068
Unicode Name LATIN SMALL LETTER H
HTML Numeric h
HTML Entity
URL Escape %68
UTF-8 (Hex) 68
Quoted-Printable h

Source Code Examples

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

Navigate

Copied!