ASCII 107
Latin Small Letter K (k)
Printable ASCII
Lowercase letter k.
All encodings at a glance
| Decimal | 107 |
| Hexadecimal | 0x6B |
| Octal | 0153 |
| Binary | 01101011 |
| HTML numeric entity | k |
| URL encoding | %6B |
| UTF-8 bytes | 0x6B |
Code snippets
JavaScript
String.fromCharCode(107); // "k"
107.toString(16); // "6b"Python
chr(107) # 'k'
ord(chr(107)) # 107
hex(107) # '0x6b'HTML
k <!-- numeric entity (no named entity for this character) -->