| Nome del simbolo | Latin Small Letter N |
| Versione Unicode | 1.1 |
| Unicode | U+006E |
| Blocco Unicode | |
| Categoria generale | Lowercase Letter (Ll) |
| Codice CSS | \006E |
| Codice esadecimale | 0x006E |
| Codice HTML | n |
| LaTeX | n |
| Simbolo | n |
| Codifica URL (percentuale UTF-8) | %6E |
| Nome parlato / screen reader | Latin Small Letter N |
| UTF-8 | 6E |
| UTF-16 | 006E |
| UTF-32 | 0000006E |
1\documentclass{article}2\usepackage{pifont}3n4\end{document}Puoi digitare il simbolo latin small letter n sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Latin Small Letter N nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |