| Nom du symbole | Greek Capital Letter Omicron |
| Version Unicode | 1.1 |
| Unicode | U+039F |
| Bloc Unicode | |
| Catégorie générale | Uppercase Letter (Lu) |
| Code CSS | \039F |
| Code hexadécimal | 0x039F |
| Code HTML | Ο |
| LaTeX | O |
| Symbole | Ο |
| Encodage URL (pourcent UTF-8) | %CE%9F |
| Nom oral / lecteur d’écran | Greek Capital Letter Omicron |
| UTF-8 | CE 9F |
| UTF-16 | 039F |
| UTF-32 | 0000039F |
1\documentclass{article}2\usepackage{pifont}3O4\end{document}Vous pouvez saisir le symbole greek capital letter omicron sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Greek Capital Letter Omicron dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |