| Nombre del símbolo | Latin Small Letter Omega |
| Versión Unicode | 8.0 |
| Unicode | U+A7B7 |
| Bloque Unicode | |
| Categoría general | Lowercase Letter (Ll) |
| Código CSS | \A7B7 |
| Código hexadecimal | 0xA7B7 |
| Código HTML | ꞷ |
| LaTeX | \text{LATINSMALLLETTEROMEGA} |
| Símbolo | ꞷ |
| Codificación URL (porcentaje UTF-8) | %EA%9E%B7 |
| Nombre oral / lector de pantalla | Latin Small Letter Omega |
| UTF-8 | EA 9E B7 |
| UTF-16 | A7B7 |
| UTF-32 | 0000A7B7 |
1\documentclass{article}2\usepackage{pifont}3\text{LATINSMALLLETTEROMEGA}4\end{document}Puedes escribir el símbolo latin small letter omega en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 42935 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin small letter omega", or use Unicode Hex Input with A7B7.
Ctrl + Shift + U, type a7b7, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Latin keyboard.
Paste from this page or use a keyboard with Latin letter support.
1span.latin-small-letter-omega::before { content: "\A7B7"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>ꞷ</span>La representación del símbolo Latin Small Letter Omega en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\uA7B7' or String.fromCodePoint(42935) |
| Python | '\N{LATIN SMALL LETTER OMEGA}' or chr(42935) |
| Rust | '\u{A7B7}' |
| C / C++ | UTF-8 source or wchar_t with U+A7B7 |
| Go | string(rune(0xA7B7)) |
| Ruby | "\u{A7B7}" |