| Symbol Name | Greek Small Letter Nu |
| Unicode Version | 1.1 |
| Unicode | U+03BD |
| Unicode block | |
| General category | Lowercase Letter (Ll) |
| CSS Code | \03BD |
| Hex Code | 0x03BD |
| HTML Code | ν |
| LaTeX | \nu |
| Symbol | ν |
| URL encode (UTF-8 percent) | %CE%BD |
| Spoken / screen reader name | Greek Small Letter Nu |
| UTF-8 | CE BD |
| UTF-16 | 03BD |
| UTF-32 | 000003BD |
1\documentclass{article}2\usepackage{pifont}3\nu4\end{document}You can type the greek small letter nu symbol on most modern devices with the help of following methods:
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>Greek Small Letter Nu symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |