ASCII 197
Character 197 (Å)
Latin-1 Supplement
Latin capital letter Å. Common in Western European languages (French, German, Spanish, Portuguese).
All encodings at a glance
| Decimal | 197 |
| Hexadecimal | 0xC5 |
| Octal | 0305 |
| Binary | 11000101 |
| HTML numeric entity | Å |
| URL encoding | %C5 |
| UTF-8 bytes | 0xC3 0x85 |
Code snippets
JavaScript
String.fromCharCode(197); // "Å"
197.toString(16); // "c5"Python
chr(197) # control char Å
ord(chr(197)) # 197
hex(197) # '0xc5'HTML
Å <!-- numeric entity (no named entity for this character) -->Unicode & UTF-8 note
In Unicode this is U+00C5. In UTF-8 it encodes to the byte sequence 0xC3 0x85. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xC5, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.