DevKits

ASCII 187

Right-Pointing Double Angle Quotation Mark (»)

Latin-1 Supplement

Latin-1 character.

All encodings at a glance

Decimal187
Hexadecimal0xBB
Octal0273
Binary10111011
HTML numeric entity»
HTML named entity»
URL encoding%BB
UTF-8 bytes0xC2 0xBB

Code snippets

JavaScript

String.fromCharCode(187); // "»"
187.toString(16); // "bb"

Python

chr(187)           # control char »
ord(chr(187))      # 187
hex(187)           # '0xbb'

HTML

&raquo;   <!-- named entity -->
&#187;   <!-- 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.

Nearby codes