| Nome del simbolo | Greek Small Letter Nu |
| Versione Unicode | 1.1 |
| Unicode | U+03BD |
| Blocco Unicode | |
| Categoria generale | Lowercase Letter (Ll) |
| Codice CSS | \03BD |
| Codice esadecimale | 0x03BD |
| Codice HTML | ν |
| LaTeX | \nu |
| Simbolo | ν |
| Codifica URL (percentuale UTF-8) | %CE%BD |
| Nome parlato / screen reader | Greek Small Letter Nu |
| UTF-8 | CE BD |
| UTF-16 | 03BD |
| UTF-32 | 000003BD |
1\documentclass{article}2\usepackage{pifont}3\nu4\end{document}Puoi digitare il simbolo greek small letter nu sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 957 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek small letter nu", or use Unicode Hex Input with 03BD.
Ctrl + Shift + U, type 03bd, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Greek keyboard.
Paste from this page or use a keyboard with Greek letter support.
1span.nu::before { content: "\03BD"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>ν</span>La rappresentazione del simbolo Greek Small Letter Nu nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u03BD' or String.fromCodePoint(957) |
| Python | '\N{GREEK SMALL LETTER NU}' or chr(957) |
| Rust | '\u{03BD}' |
| C / C++ | UTF-8 source or wchar_t with U+03BD |
| Go | string(rune(0x03BD)) |
| Ruby | "\u{03BD}" |