Ž

ASCII Character: Latin capital letter Z with caron

ASCII Code 142 · Unicode U+008E · Hex 0x8E

About the Latin capital letter Z with caron Character

ASCII code 142 (0x8E) represents the Latin capital 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.

Encoding Details

ASCII Code 142
Hexadecimal 0x8E
Octal 216
Binary 10001110
Unicode U+008E
Unicode Name LATIN CAPITAL LETTER Z WITH CARON
HTML Numeric Ž
HTML Entity
URL Escape %8E
UTF-8 (Hex) C5 BD
Quoted-Printable =8E

Source Code Examples

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

Navigate

Copied!