ASCII 75
Latin Capital Letter K (K)
Printable ASCII
Uppercase letter K.
All encodings at a glance
| Decimal | 75 |
| Hexadecimal | 0x4B |
| Octal | 0113 |
| Binary | 01001011 |
| HTML numeric entity | K |
| URL encoding | %4B |
| UTF-8 bytes | 0x4B |
Code snippets
JavaScript
String.fromCharCode(75); // "K"
75.toString(16); // "4b"Python
chr(75) # 'K'
ord(chr(75)) # 75
hex(75) # '0x4b'HTML
K <!-- numeric entity (no named entity for this character) -->