N

ASCII Character: Uppercase N

ASCII Code 78 · Unicode U+004E · Hex 0x4E

N uppercase-n

About the Uppercase N Character

ASCII code 78 (0x4E) represents the Uppercase N character "N". The uppercase letter "N" has ASCII code 78. Uppercase letters A–Z span codes 65–90. The relationship between uppercase and lowercase ASCII letters is consistent: adding 32 to an uppercase letter’s code gives the corresponding lowercase letter (e.g., 'A' at 65 + 32 = 'a' at 97). The printable ASCII characters (codes 32–126) include the space, digits, uppercase and lowercase Latin letters, and common punctuation symbols. These 95 characters form the foundation of text representation in virtually all computing systems and are universally supported across all character encodings, programming languages, and operating systems.

Encoding Details

ASCII Code 78
Hexadecimal 0x4E
Octal 116
Binary 01001110
Unicode U+004E
Unicode Name LATIN CAPITAL LETTER N
HTML Numeric N
HTML Entity
URL Escape %4E
UTF-8 (Hex) 4E
Quoted-Printable N

Source Code Examples

JavaScript
// Character literal
let char = 'N';
// Using char code
let char2 = String.fromCharCode(78);
// Unicode escape
let char3 = '\x4E';
Python
# Character literal
char = 'N'
# Using chr()
char = chr(78)
# Using ord() to get code
code = ord('N')  # Returns 78
HTML
<!-- Direct character -->
N
<!-- HTML entity (numeric) -->
&#78;
<!-- Hex entity -->
&#x4E;
C#
// Character literal
char c = 'N';
// Using cast
char c2 = (char)78;
// To get code from char
int code = (int)'N';  // Returns 78

Navigate

Copied!