n
Lowercase n
PrintableASCII 110 | Hex 0x6E | U+006E
Lowercase n sits at ASCII 110. In C and most languages descended from it, \n represents the newline character (ASCII 10, line feed). This escape sequence is so fundamental that "newline" and "backslash-n" are used interchangeably in programmer jargon. In regular expressions, \n matches a literal newline. In mathematics and most pseudocode, n conventionally represents the size of an input, as in O(n log n) time complexity.
ASCII Code
Decimal
110
Hexadecimal
0x6E
Octal
156
Binary
0110 1110
URL Escape
%6E
Unicode
Code Point
U+006E
Escape
\u006e
UTF-8 Hex
0x6E
UTF-8 Binary
01101110
UTF-16
0x006E
UTF-32
0x0000006E
HTML Entities
Numeric
n
Hex
n
How to Type
Windows Alt CodeAlt + 110
HTML Entity
n
Unicode InputU+006E
Source Code Representations
C / Java
"\u006E"CSS
\006EJavaScript
"\u006E"Perl
\x{006E}Python 2
u"\u006E"Python 3
\u006ERuby
\u{006E}Frequently Asked Questions
What is ASCII code 110?
ASCII code 110 represents the Lowercase n character. In hexadecimal it is 0x6E, in binary 0110 1110, and in octal 156. It is a printable character that appears as "n" in text.
How do I type ASCII 110 on a keyboard?
On Windows, hold Alt and type 110 on the numeric keypad. On Mac, you can use the Character Viewer (Edit > Emoji & Symbols). In HTML, use the entity n or n.