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