Ohm Sign

Shortcodes

Copy useful codes for ohm sign Ω to use in websites, apps, blogs, and docs.

Unicode
U+2126
HTML Code
Ω
HTML Entity
Ω
HEX Code
Ω
CSS Code
\2126
JS/JSON
\u2126
Unix/C/PHP/JAVA
0x2126
URL-encode
%E2%84%A6

Customize Ohm Sign

Customize Ω, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Ohm Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Ω</span>
HTML Code:
<span>&#8486;</span>
HTML Entity:
<span>&ohm;</span>
HEX Code:
<span>&#x2126;</span>

Add with CSS

.ohm-sign::before {
  content: '\\2126';
}

Set it in JavaScript

document.querySelector('.ohm-sign').textContent = 'Ω';
copied