g

ASCII Character: Lowercase g

ASCII Code 103 · Unicode U+0067 · Hex 0x67

g lowercase-g

About the Lowercase g Character

ASCII code 103 (0x67) represents the Lowercase g character "g". The lowercase letter "g" has ASCII code 103. 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 103
Hexadecimal 0x67
Octal 147
Binary 01100111
Unicode U+0067
Unicode Name LATIN SMALL LETTER G
HTML Numeric g
HTML Entity
URL Escape %67
UTF-8 (Hex) 67
Quoted-Printable g

Source Code Examples

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

Navigate

Copied!