| Symboolnaam | Latin Small Letter N |
| Unicode-versie | 1.1 |
| Unicode | U+006E |
| Unicode-blok | |
| Algemene categorie | Lowercase Letter (Ll) |
| CSS-code | \006E |
| Hexadecimale code | 0x006E |
| HTML-code | n |
| LaTeX | n |
| Symbool | n |
| URL-codering (UTF-8 procent) | %6E |
| Uitgesproken naam / schermlezer | Latin Small Letter N |
| UTF-8 | 6E |
| UTF-16 | 006E |
| UTF-32 | 0000006E |
1\documentclass{article}2\usepackage{pifont}3n4\end{document}Je kunt het latin small letter n-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Latin Small Letter N-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |