ª

ASCII Character: Feminine ordinal indicator

ASCII Code 170 · Unicode U+00AA · Hex 0xAA

About the Feminine ordinal indicator Character

ASCII code 170 (0xAA) represents the Feminine ordinal indicator 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 170
Hexadecimal 0xAA
Octal 252
Binary 10101010
Unicode U+00AA
Unicode Name FEMININE ORDINAL INDICATOR
HTML Numeric ª
HTML Entity ª
URL Escape %AA
UTF-8 (Hex) C2 AA
Quoted-Printable =AA

Source Code Examples

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

Navigate

Copied!