Frequently the first letter seen in common English negators and connectives — No, Not, Never, Now, New — uppercase 'N' enjoys a strong presence at sentence boundaries and in headlines. It is the 14th letter of the Latin alphabet, sitting at ASCII code point 78 (0x4E), exactly 32 below its lowercase counterpart 'n' at 110 (0x6E), maintaining the single-bit case offset (bit 5) shared by all ASCII A–Z / a–z pairs. In mathematics and computing, 'N' is widely used as the conventional symbol for an arbitrary positive integer or set size.
// N as array size convention#define N 100int array[N];for (int i = 0; i < N; i++) {array[i] = i;}
Science and mathematics: Uppercase 'N' is one of the most overloaded single letters in STEM. In physics, it is the symbol for the newton, the SI unit of force (1 N = 1 kg·m/s²), where correct capitalization distinguishes the unit symbol from the lowercase prefix nano-. In chemistry, N is the element symbol for nitrogen (atomic number 7). In mathematics, ℕ (double-struck N) denotes the set of natural numbers — a convention originating with Bourbaki in the mid-20th century. The letter also serves as the near-universal placeholder for input size in algorithmic complexity notation (O(N), O(N log N)).
Printf and escape sequences: In C-family printf-style formatting, the %n specifier writes the number of characters printed so far to a pointer argument — a feature so frequently exploited in format-string attacks that many modern compilers and runtimes disable or warn against it. Separately, the escape sequence \n (using lowercase) represents a newline character in C-style strings, making 'N' one of the few letters pulling double duty across format and escape contexts.
Ñ and Spanish orthography: Unlike most diacritical variants, uppercase Ñ is considered a fully separate letter in the Spanish alphabet, sorted between N and O. The tilde (~) above it marks a palatal nasal /ɲ/ sound. Its omission is not merely a spelling error but a violation of orthographic rules, and Spanish-language domain names and identifiers increasingly require proper Ñ support through IDN and Unicode normalization.
Diacritical variants: Beyond Ñ, uppercase 'N' serves as the base for Ń (acute) in Polish and Serbian Latin, Ň (caron) in Czech and Slovak, Ņ (cedilla) in Latvian, and Ṇ (dot below) in IAST transliteration of Sanskrit. Several of these function as distinct letters in their respective alphabets rather than mere accented variants, affecting collation order and dictionary sorting.
Science and mathematics: Uppercase 'N' is one of the most overloaded single letters in STEM. In physics, it is the symbol for the newton, the SI unit of force (1 N = 1 kg·m/s²), where correct capitalization distinguishes the unit symbol from the lowercase prefix nano-. In chemistry, N is the element symbol for nitrogen (atomic number 7). In mathematics, ℕ (double-struck N) denotes the set of natural numbers — a convention originating with Bourbaki in the mid-20th century. The letter also serves as the near-universal placeholder for input size in algorithmic complexity notation (O(N), O(N log N)).
Printf and escape sequences: In C-family printf-style formatting, the %n specifier writes the number of characters printed so far to a pointer argument — a feature so frequently exploited in format-string attacks that many modern compilers and runtimes disable or warn against it. Separately, the escape sequence \n (using lowercase) represents a newline character in C-style strings, making 'N' one of the few letters pulling double duty across format and escape contexts.
Ñ and Spanish orthography: Unlike most diacritical variants, uppercase Ñ is considered a fully separate letter in the Spanish alphabet, sorted between N and O. The tilde (~) above it marks a palatal nasal /ɲ/ sound. Its omission is not merely a spelling error but a violation of orthographic rules, and Spanish-language domain names and identifiers increasingly require proper Ñ support through IDN and Unicode normalization.
Diacritical variants: Beyond Ñ, uppercase 'N' serves as the base for Ń (acute) in Polish and Serbian Latin, Ň (caron) in Czech and Slovak, Ņ (cedilla) in Latvian, and Ṇ (dot below) in IAST transliteration of Sanskrit. Several of these function as distinct letters in their respective alphabets rather than mere accented variants, affecting collation order and dictionary sorting.