ASCII Code 142 · Unicode U+008E · Hex 0x8E
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.
| 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 |
// Character literal
let char = '';
// Using char code
let char2 = String.fromCharCode(142);
// Unicode escape
let char3 = '\u008E'; # Character literal
char = ''
# Using chr()
char = chr(142)
# Using ord() to get code
code = ord('') # Returns 142 <!-- Direct character -->
<!-- HTML entity (numeric) -->
Ž
<!-- Hex entity -->
Ž // Character literal
char c = '';
// Using cast
char c2 = (char)142;
// To get code from char
int code = (int)''; // Returns 142