Œ

ASCII Character: Latin capital ligature OE

ASCII Code 140 · Unicode U+008C · Hex 0x8C

About the Latin capital ligature OE Character

ASCII code 140 (0x8C) represents the Latin capital ligature OE 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 140
Hexadecimal 0x8C
Octal 214
Binary 10001100
Unicode U+008C
Unicode Name LATIN CAPITAL LIGATURE OE
HTML Numeric Œ
HTML Entity
URL Escape %8C
UTF-8 (Hex) C5 92
Quoted-Printable =8C

Source Code Examples

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

Navigate

Copied!