Scruple

Shortcodes

Copy and paste codes for Scruple symbol ℈ to use in your websites, apps, blogs, and more.

Unicode
U+2108
HTML Code
℈
HEX Code
℈
CSS Code
\2108
JS/JSON
\u2108
Unix/C/PHP/JAVA
0x2108
URL-encode
%E2%84%88
copied

Customize Scruple Symbol

Customize ℈ symbol as you like and download Scruple 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 Scruple symbol in HTML, CSS, and JS?

Insert ℈ Scruple using HTML

1. Copy-paste Scruple directly:
<span>℈</span>
2. HTML Decimal Code:
<span>&#8456;</span>
3. Hexadecimal Code:
<span>&#x2108;</span>
Preview:

Add Scruple symbol with CSS

.scruple::before {
    content: '\\2108';
}
Preview: Scruple

Scruple JavaScript Code

1. Direct Symbol:
document.querySelector('.scruple').textContent = '℈';
2. Unicode Escape for ℈:
document.querySelector('.scruple').textContent = '\u2108';
Preview: