| Nom du symbole | Greek Capital Letter Psi |
| Version Unicode | 1.1 |
| Unicode | U+03A8 |
| Bloc Unicode | |
| Catégorie générale | Uppercase Letter (Lu) |
| Code CSS | \03A8 |
| Code hexadécimal | 0x03A8 |
| Code HTML | Ψ |
| LaTeX | \Psi |
| Symbole | Ψ |
| Encodage URL (pourcent UTF-8) | %CE%A8 |
| Nom oral / lecteur d’écran | Greek Capital Letter Psi |
| UTF-8 | CE A8 |
| UTF-16 | 03A8 |
| UTF-32 | 000003A8 |
1\documentclass{article}2\usepackage{pifont}3\Psi4\end{document}Vous pouvez saisir le symbole greek capital letter psi sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 936 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek capital letter psi", or use Unicode Hex Input with 03A8.
Ctrl + Shift + U, type 03a8, 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-psi::before { content: "\03A8"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>Ψ</span>La représentation du symbole Greek Capital Letter Psi dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u03A8' or String.fromCodePoint(936) |
| Python | '\N{GREEK CAPITAL LETTER PSI}' or chr(936) |
| Rust | '\u{03A8}' |
| C / C++ | UTF-8 source or wchar_t with U+03A8 |
| Go | string(rune(0x03A8)) |
| Ruby | "\u{03A8}" |