ASCII 119
Latin Small Letter W (w)
Printable ASCII
Lowercase letter w.
All encodings at a glance
| Decimal | 119 |
| Hexadecimal | 0x77 |
| Octal | 0167 |
| Binary | 01110111 |
| HTML numeric entity | w |
| URL encoding | %77 |
| UTF-8 bytes | 0x77 |
Code snippets
JavaScript
String.fromCharCode(119); // "w"
119.toString(16); // "77"Python
chr(119) # 'w'
ord(chr(119)) # 119
hex(119) # '0x77'HTML
w <!-- numeric entity (no named entity for this character) -->