| Nome del simbolo | Greek Capital Letter Nu |
| Versione Unicode | 1.1 |
| Unicode | U+039D |
| Blocco Unicode | |
| Categoria generale | Uppercase Letter (Lu) |
| Codice CSS | \039D |
| Codice esadecimale | 0x039D |
| Codice HTML | Ν |
| LaTeX | N |
| Simbolo | Ν |
| Codifica URL (percentuale UTF-8) | %CE%9D |
| Nome parlato / screen reader | Greek Capital Letter Nu |
| UTF-8 | CE 9D |
| UTF-16 | 039D |
| UTF-32 | 0000039D |
1\documentclass{article}2\usepackage{pifont}3N4\end{document}Puoi digitare il simbolo greek capital letter nu sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 925 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek capital letter nu", or use Unicode Hex Input with 039D.
Ctrl + Shift + U, type 039d, 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.capital-nu::before { content: "\039D"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>Ν</span>La rappresentazione del simbolo Greek Capital Letter Nu nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u039D' or String.fromCodePoint(925) |
| Python | '\N{GREEK CAPITAL LETTER NU}' or chr(925) |
| Rust | '\u{039D}' |
| C / C++ | UTF-8 source or wchar_t with U+039D |
| Go | string(rune(0x039D)) |
| Ruby | "\u{039D}" |