b

ASCII Code 98

Lowercase b

About This Character

ASCII code 98 (0x62) represents the Lowercase b character "b". The lowercase letter "b" has ASCII code 98. 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.

Character Encoding

Decimal 98
Octal 142
Hexadecimal 0x62
Binary 01100010
HTML Code b
HTML Entity
Unicode U+0062
Unicode Name LATIN SMALL LETTER B
URL Escape %62
Quoted-Printable b
UTF-8 (Hex) 62
Category Printable — Lowercase Letters

How to Type in Code

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

See Also

Copied!