DevKits

ASCII 87

Latin Capital Letter W (W)

Printable ASCII

Uppercase letter W.

All encodings at a glance

Decimal87
Hexadecimal0x57
Octal0127
Binary01010111
HTML numeric entityW
URL encoding%57
UTF-8 bytes0x57

Code snippets

JavaScript

String.fromCharCode(87); // "W"
87.toString(16); // "57"

Python

chr(87)           # 'W'
ord(chr(87))      # 87
hex(87)           # '0x57'

HTML

&#87;   <!-- numeric entity (no named entity for this character) -->

Nearby codes