| Nombre del símbolo | Greek Capital Letter Psi |
| Versión Unicode | 1.1 |
| Unicode | U+03A8 |
| Bloque Unicode | |
| Categoría general | Uppercase Letter (Lu) |
| Código CSS | \03A8 |
| Código hexadecimal | 0x03A8 |
| Código HTML | Ψ |
| LaTeX | \Psi |
| Símbolo | Ψ |
| Codificación URL (porcentaje UTF-8) | %CE%A8 |
| Nombre oral / lector de pantalla | Greek Capital Letter Psi |
| UTF-8 | CE A8 |
| UTF-16 | 03A8 |
| UTF-32 | 000003A8 |
1\documentclass{article}2\usepackage{pifont}3\Psi4\end{document}Puedes escribir el símbolo greek capital letter psi en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Greek Capital Letter Psi en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |