ž

ASCII Code 158

Latin small letter z with caron

About This Character

ASCII code 158 (0x9E) represents the Latin small letter z with caron character in the extended ASCII table (128–255). It is part of the extended ASCII character set defined by the Windows-1252 (CP-1252) encoding. The extended ASCII range builds upon the original 128-character ASCII set, adding accented letters, currency symbols, typographic marks, and mathematical symbols. These characters are defined by the Windows-1252 (CP-1252) encoding, which is a superset of ISO 8859-1 (Latin-1). In modern web development, UTF-8 encoding is preferred, but understanding extended ASCII remains important for legacy system compatibility and character encoding troubleshooting.

Character Encoding

Decimal 158
Octal 236
Hexadecimal 0x9E
Binary 10011110
HTML Code ž
HTML Entity
Unicode U+009E
Unicode Name LATIN SMALL LETTER Z WITH CARON
URL Escape %9E
Quoted-Printable =9E
UTF-8 (Hex) C5 BE
Category Extended — Miscellaneous Extended

How to Type in Code

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

See Also

Copied!