DevKits

ASCII 197

Character 197 (Å)

Latin-1 Supplement

Latin capital letter Å. Common in Western European languages (French, German, Spanish, Portuguese).

All encodings at a glance

Decimal197
Hexadecimal0xC5
Octal0305
Binary11000101
HTML numeric entityÅ
URL encoding%C5
UTF-8 bytes0xC3 0x85

Code snippets

JavaScript

String.fromCharCode(197); // "Å"
197.toString(16); // "c5"

Python

chr(197)           # control char Å
ord(chr(197))      # 197
hex(197)           # '0xc5'

HTML

&#197;   <!-- 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.

Nearby codes