Script Small O

Shortcodes

Copy useful codes for script small o symbol ℴ to use in websites, apps, blogs, and docs.

Unicode
U+2134
HTML Code
ℴ
HEX Code
ℴ
CSS Code
\2134
JS/JSON
\u2134
Unix/C/PHP/JAVA
0x2134
URL-encode
%E2%85%B4

Customize Script Small O

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

  

How to use Script Small O Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ℴ</span>
HTML Code:
<span>&#8500;</span>
HEX Code:
<span>&#x2134;</span>

Add with CSS

.script-small-o::before {
  content: '\\2134';
}

Set it in JavaScript

document.querySelector('.script-small-o').textContent = 'ℴ';
copied