| Nombre del símbolo | Greek Capital Letter Phi |
| Versión Unicode | 1.1 |
| Unicode | U+03A6 |
| Bloque Unicode | |
| Categoría general | Uppercase Letter (Lu) |
| Código CSS | \03A6 |
| Código hexadecimal | 0x03A6 |
| Código HTML | Φ |
| LaTeX | \Phi |
| Símbolo | Φ |
| Codificación URL (porcentaje UTF-8) | %CE%A6 |
| Nombre oral / lector de pantalla | Greek Capital Letter Phi |
| UTF-8 | CE A6 |
| UTF-16 | 03A6 |
| UTF-32 | 000003A6 |
1\documentclass{article}2\usepackage{pifont}3\Phi4\end{document}Puedes escribir el símbolo greek capital letter phi en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 934 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek capital letter phi", or use Unicode Hex Input with 03A6.
Ctrl + Shift + U, type 03a6, 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-phi::before { content: "\03A6"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>Φ</span>La representación del símbolo Greek Capital Letter Phi en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u03A6' or String.fromCodePoint(934) |
| Python | '\N{GREEK CAPITAL LETTER PHI}' or chr(934) |
| Rust | '\u{03A6}' |
| C / C++ | UTF-8 source or wchar_t with U+03A6 |
| Go | string(rune(0x03A6)) |
| Ruby | "\u{03A6}" |