ASCII 87
Latin Capital Letter W (W)
Printable ASCII
Uppercase letter W.
All encodings at a glance
| Decimal | 87 |
| Hexadecimal | 0x57 |
| Octal | 0127 |
| Binary | 01010111 |
| HTML numeric entity | W |
| URL encoding | %57 |
| UTF-8 bytes | 0x57 |
Code snippets
JavaScript
String.fromCharCode(87); // "W"
87.toString(16); // "57"Python
chr(87) # 'W'
ord(chr(87)) # 87
hex(87) # '0x57'HTML
W <!-- numeric entity (no named entity for this character) -->