ASCII 110
Latin Small Letter N (n)
Printable ASCII
Lowercase letter n.
All encodings at a glance
| Decimal | 110 |
| Hexadecimal | 0x6E |
| Octal | 0156 |
| Binary | 01101110 |
| HTML numeric entity | n |
| URL encoding | %6E |
| UTF-8 bytes | 0x6E |
Code snippets
JavaScript
String.fromCharCode(110); // "n"
110.toString(16); // "6e"Python
chr(110) # 'n'
ord(chr(110)) # 110
hex(110) # '0x6e'HTML
n <!-- numeric entity (no named entity for this character) -->