| Symbol Name | Ohm Sign |
| Unicode Version | 1.1 |
| Unicode | U+2126 |
| Unicode block | |
| General category | Uppercase Letter (Lu) |
| CSS Code | \2126 |
| Hex Code | 0x2126 |
| HTML Code | Ω |
| LaTeX | \mathrm{Ω} |
| Symbol | Ω |
| URL encode (UTF-8 percent) | %E2%84%A6 |
| Spoken / screen reader name | Ohm Sign |
| UTF-8 | E2 84 A6 |
| UTF-16 | 2126 |
| UTF-32 | 00002126 |
1\documentclass{article}2\usepackage{pifont}3\mathrm{Ω}4\end{document}You can type the ohm sign symbol on most modern devices with the help of following methods:
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>Ohm Sign symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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" |