€

ASCII Code 128

Euro sign

About This Character

ASCII code 128 (0x80) represents the Euro sign character in the extended ASCII table (128–255). It is a widely recognized symbol used in international commerce, intellectual property, or mathematical notation. 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 128
Octal 200
Hexadecimal 0x80
Binary 10000000
HTML Code €
HTML Entity
Unicode U+0080
Unicode Name EURO SIGN
URL Escape %80
Quoted-Printable =80
UTF-8 (Hex) E2 82 AC
Category Extended — Symbols & Signs

How to Type in Code

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

See Also

Copied!