DevKits

ASCII 169

Copyright Sign (©)

Latin-1 Supplement

Copyright symbol (©). Universally recognized copyright notice mark. Available via ⌥+G on macOS.

All encodings at a glance

Decimal169
Hexadecimal0xA9
Octal0251
Binary10101001
HTML numeric entity©
HTML named entity©
URL encoding%A9
UTF-8 bytes0xC2 0xA9

Code snippets

JavaScript

String.fromCharCode(169); // "©"
169.toString(16); // "a9"

Python

chr(169)           # control char ©
ord(chr(169))      # 169
hex(169)           # '0xa9'

HTML

&copy;   <!-- named entity -->
&#169;   <!-- numeric entity -->

Unicode & UTF-8 note

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

Nearby codes