DevKits

ASCII 194

Character 194 (Â)

Latin-1 Supplement

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

Common uses & context

Decimal 194 (0xC2) is Character 194, part of the Latin-1 Supplement (128–255). Latin capital letter Â. Common in Western European languages (French, German, Spanish, Portuguese). It renders as 'Â' and its binary byte is 11000010.

This is where single-byte ASCII ends and encoding matters. In Latin-1 (ISO-8859-1) 'Â' is the single byte 0xC2. In UTF-8 — today's default for the web — the same character is the multi-byte sequence 0xC3 0x82. Treating a Latin-1 byte as UTF-8 (or vice versa) is the usual reason accented letters and symbols turn into mojibake like é or €. The Unicode code point is U+00C2, and in HTML you can write it as Â.

All encodings at a glance

Decimal194
Hexadecimal0xC2
Octal0302
Binary11000010
HTML numeric entityÂ
URL encoding%C2
UTF-8 bytes0xC3 0x82

Code snippets

JavaScript

String.fromCharCode(194); // "Â"
194.toString(16); // "c2"

Python

chr(194)           # control char Â
ord(chr(194))      # 194
hex(194)           # '0xc2'

HTML

&#194;   <!-- numeric entity (no named entity for this character) -->

Programming notes

  • Single byte 0xC2 in Latin-1, but the multi-byte sequence 0xC3 0x82 in UTF-8 — never assume one byte per character above code 127.
  • Unicode code point U+00C2; HTML numeric entity &#194;.
  • If 'Â' shows as mojibake, the encoding declared and the encoding used disagree — align both on UTF-8.

Unicode & UTF-8 note

In Unicode this is U+00C2. In UTF-8 it encodes to the byte sequence 0xC3 0x82. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xC2, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.

Frequently asked questions

What character is ASCII code 194?

ASCII code 194 is the character 'Â' (Character 194). In hexadecimal it is 0xC2, in octal 0302, and in binary 11000010.

What is 0xC2 in ASCII?

Hexadecimal 0xC2 equals decimal 194, which is the character 'Â' (Character 194). To convert hex to ASCII yourself, read the two hex digits as a base-16 number (0xC2 = 194) and look up that code point.

How do I write the character with code 194 in code?

In JavaScript use String.fromCharCode(194); in Python use chr(194); in HTML use the numeric entity &#194;. In a URL it is percent-encoded as %C2, and in UTF-8 it is stored as the byte sequence 0xC3 0x82.

Is 'Â' part of standard ASCII?

No. Standard ASCII covers codes 0–127 only. 'Â' is code 194, part of the Latin-1 Supplement (128–255, sometimes called "extended ASCII"). It is a single byte 0xC2 in Latin-1 but a multi-byte sequence (0xC3 0x82) in UTF-8.

Nearby codes

Encode & convert this character