Scruple

Shortcodes

Copy useful codes for scruple symbol ℈ to use in websites, apps, blogs, and docs.

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

Customize Scruple

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

  

How to use Scruple Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>℈</span>
HTML Code:
<span>&#8456;</span>
HEX Code:
<span>&#x2108;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.scruple').textContent = '℈';
copied