ASCII 180
Acute Accent (´)
Latin-1 Supplement
Latin-1 character.
All encodings at a glance
| Decimal | 180 |
| Hexadecimal | 0xB4 |
| Octal | 0264 |
| Binary | 10110100 |
| HTML numeric entity | ´ |
| HTML named entity | ´ |
| URL encoding | %B4 |
| UTF-8 bytes | 0xC2 0xB4 |
Code snippets
JavaScript
String.fromCharCode(180); // "´"
180.toString(16); // "b4"Python
chr(180) # control char ´
ord(chr(180)) # 180
hex(180) # '0xb4'HTML
´ <!-- named entity -->
´ <!-- numeric entity -->Unicode & UTF-8 note
In Unicode this is U+00B4. In UTF-8 it encodes to the byte sequence 0xC2 0xB4. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xB4, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.