| Symbol Name | Greek Capital Letter Nu |
| Unicode Version | 1.1 |
| Unicode | U+039D |
| Unicode block | |
| General category | Uppercase Letter (Lu) |
| CSS Code | \039D |
| Hex Code | 0x039D |
| HTML Code | Ν |
| LaTeX | N |
| Symbol | Ν |
| URL encode (UTF-8 percent) | %CE%9D |
| Spoken / screen reader name | Greek Capital Letter Nu |
| UTF-8 | CE 9D |
| UTF-16 | 039D |
| UTF-32 | 0000039D |
1\documentclass{article}2\usepackage{pifont}3N4\end{document}You can type the greek capital letter nu symbol on most modern devices with the help of following methods:
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>Greek Capital Letter Nu symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |