Á

ASCII Code 193

A with acute

About This Character

ASCII code 193 (0xC1) represents the A with acute character in the extended ASCII table (128–255). It is a Latin accented character commonly used in European languages such as French, German, Spanish, Portuguese, and Scandinavian languages. 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 193
Octal 301
Hexadecimal 0xC1
Binary 11000001
HTML Code Á
HTML Entity Á
Unicode U+00C1
Unicode Name LATIN CAPITAL LETTER A WITH ACUTE
URL Escape %C1
Quoted-Printable =C1
UTF-8 (Hex) C3 81
Category Extended — Latin Accented Letters

How to Type in Code

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

See Also

Copied!