| Nome del simbolo | Greek Capital Letter Omicron |
| Versione Unicode | 1.1 |
| Unicode | U+039F |
| Blocco Unicode | |
| Categoria generale | Uppercase Letter (Lu) |
| Codice CSS | \039F |
| Codice esadecimale | 0x039F |
| Codice HTML | Ο |
| LaTeX | O |
| Simbolo | Ο |
| Codifica URL (percentuale UTF-8) | %CE%9F |
| Nome parlato / screen reader | Greek Capital Letter Omicron |
| UTF-8 | CE 9F |
| UTF-16 | 039F |
| UTF-32 | 0000039F |
1\documentclass{article}2\usepackage{pifont}3O4\end{document}Puoi digitare il simbolo greek capital letter omicron sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Greek Capital Letter Omicron nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |