| Nombre del símbolo | Ohm Sign |
| Versión Unicode | 1.1 |
| Unicode | U+2126 |
| Bloque Unicode | |
| Categoría general | Uppercase Letter (Lu) |
| Código CSS | \2126 |
| Código hexadecimal | 0x2126 |
| Código HTML | Ω |
| LaTeX | \mathrm{Ω} |
| Símbolo | Ω |
| Codificación URL (porcentaje UTF-8) | %E2%84%A6 |
| Nombre oral / lector de pantalla | Ohm Sign |
| UTF-8 | E2 84 A6 |
| UTF-16 | 2126 |
| UTF-32 | 00002126 |
1\documentclass{article}2\usepackage{pifont}3\mathrm{Ω}4\end{document}Puedes escribir el símbolo ohm sign en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 8486 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "ohm sign", or use Unicode Hex Input with 2126.
Ctrl + Shift + U, type 2126, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with unit symbol support.
1span.ohm-sign::before { content: "\2126"; }1<span>Ω</span>La representación del símbolo Ohm Sign en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u2126' or String.fromCodePoint(0x2126) |
| Python | '\N{OHM SIGN}' or chr(8486) |
| Rust | '\u{2126}' |
| C / C++ | UTF-8 source or wchar_t with U+2126 |
| Go | string(rune(0x2126)) |
| Ruby | "\u2126" |