ASCII 78
Latin Capital Letter N (N)
Printable ASCII
Uppercase letter N.
All encodings at a glance
| Decimal | 78 |
| Hexadecimal | 0x4E |
| Octal | 0116 |
| Binary | 01001110 |
| HTML numeric entity | N |
| URL encoding | %4E |
| UTF-8 bytes | 0x4E |
Code snippets
JavaScript
String.fromCharCode(78); // "N"
78.toString(16); // "4e"Python
chr(78) # 'N'
ord(chr(78)) # 78
hex(78) # '0x4e'HTML
N <!-- numeric entity (no named entity for this character) -->