DevKits

ASCII 78

Latin Capital Letter N (N)

Printable ASCII

Uppercase letter N.

All encodings at a glance

Decimal78
Hexadecimal0x4E
Octal0116
Binary01001110
HTML numeric entityN
URL encoding%4E
UTF-8 bytes0x4E

Code snippets

JavaScript

String.fromCharCode(78); // "N"
78.toString(16); // "4e"

Python

chr(78)           # 'N'
ord(chr(78))      # 78
hex(78)           # '0x4e'

HTML

&#78;   <!-- numeric entity (no named entity for this character) -->

Nearby codes