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