ASCII 174
Registered Sign (®)
Latin-1 Supplement
Registered trademark (®). Marks a registered trademark, as opposed to ™ which is unregistered.
All encodings at a glance
| Decimal | 174 |
| Hexadecimal | 0xAE |
| Octal | 0256 |
| Binary | 10101110 |
| HTML numeric entity | ® |
| HTML named entity | ® |
| URL encoding | %AE |
| UTF-8 bytes | 0xC2 0xAE |
Code snippets
JavaScript
String.fromCharCode(174); // "®"
174.toString(16); // "ae"Python
chr(174) # control char ®
ord(chr(174)) # 174
hex(174) # '0xae'HTML
® <!-- named entity -->
® <!-- numeric entity -->Unicode & UTF-8 note
In Unicode this is U+00AE. In UTF-8 it encodes to the byte sequence 0xC2 0xAE. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xAE, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.