Script Small O

Shortcodes

Copy and paste codes for Script Small O symbol ℴ to use in your websites, apps, blogs, and more.

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

Customize Script Small O Symbol

Customize ℴ symbol as you like and download Script Small O as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Script Small O symbol in HTML, CSS, and JS?

Insert ℴ Script Small O using HTML

1. Copy-paste Script Small O directly:
<span>ℴ</span>
2. HTML Decimal Code:
<span>&#8500;</span>
3. Hexadecimal Code:
<span>&#x2134;</span>
Preview:

Add Script Small O symbol with CSS

.script-small-o::before {
    content: '\\2134';
}
Preview: Script Small O

Script Small O JavaScript Code

1. Direct Symbol:
document.querySelector('.script-small-o').textContent = 'ℴ';
2. Unicode Escape for ℴ:
document.querySelector('.script-small-o').textContent = '\u2134';
Preview: