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