| Symbol Name | Latin Small Letter N |
| Unicode Version | 1.1 |
| Unicode | U+006E |
| Unicode block | |
| General category | Lowercase Letter (Ll) |
| CSS Code | \006E |
| Hex Code | 0x006E |
| HTML Code | n |
| LaTeX | n |
| Symbol | n |
| URL encode (UTF-8 percent) | %6E |
| Spoken / screen reader name | Latin Small Letter N |
| UTF-8 | 6E |
| UTF-16 | 006E |
| UTF-32 | 0000006E |
1\documentclass{article}2\usepackage{pifont}3n4\end{document}You can type the latin small letter n symbol on most modern devices with the help of following methods:
Alt + 110 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin small letter n", or use Unicode Hex Input with 006E.
Ctrl + Shift + U, type 006e, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Latin keyboard.
Paste from this page or use a keyboard with Latin letter support.
1span.n::before { content: "\006E"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>n</span>Latin Small Letter N symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u006E' or String.fromCodePoint(110) |
| Python | '\N{LATIN SMALL LETTER N}' or chr(110) |
| Rust | '\u{006E}' |
| C / C++ | UTF-8 source or wchar_t with U+006E |
| Go | string(rune(0x006E)) |
| Ruby | "\u{006E}" |