ASCII 187
Right-Pointing Double Angle Quotation Mark (»)
Latin-1 Supplement
Latin-1 character.
All encodings at a glance
| Decimal | 187 |
| Hexadecimal | 0xBB |
| Octal | 0273 |
| Binary | 10111011 |
| HTML numeric entity | » |
| HTML named entity | » |
| URL encoding | %BB |
| UTF-8 bytes | 0xC2 0xBB |
Code snippets
JavaScript
String.fromCharCode(187); // "»"
187.toString(16); // "bb"Python
chr(187) # control char »
ord(chr(187)) # 187
hex(187) # '0xbb'HTML
» <!-- named entity -->
» <!-- numeric entity -->Unicode & UTF-8 note
In Unicode this is U+00BB. In UTF-8 it encodes to the byte sequence 0xC2 0xBB. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xBB, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.