Inverted Ohm Sign

Shortcodes

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

Unicode
U+2127
HTML Code
℧
HTML Entity
℧
HEX Code
℧
CSS Code
\2127
JS/JSON
\u2127
Unix/C/PHP/JAVA
0x2127
URL-encode
%E2%84%A7

Customize Inverted Ohm Sign

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

  

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

Insert in HTML

1. Direct symbol:
<span>℧</span>
HTML Code:
<span>&#8487;</span>
HTML Entity:
<span>&mho;</span>
HEX Code:
<span>&#x2127;</span>

Add with CSS

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

Set it in JavaScript

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