HTML Entity for Scruple (℈)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+2108

What Is the Scruple Entity?

Scruple (℈) is the Letterlike Symbols character at Unicode U+2108 (SCRUPLE). It marks the apothecaries’ scruple — a historical weight of 20 grains (≈ 1.296 g).

Remember
Character     ℈
Unicode       U+2108
Hex entity    ℈
Decimal       ℈
Named entity  (none)
CSS escape    \2108
Not the same  ℥ (ounce sign) · ℇ (Euler constant)

Hex, decimal, CSS, and a typed character all produce the same glyph: ℈. Prefer ℈ when you want an explicit entity. For the larger apothecaries’ unit, see Ounce Sign (℥).

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Hex entity℈HTML markup (best entity default)
Decimal entity℈HTML markup
Named entityNoneHTML5 does not define one
CSS escape\2108Stylesheet content
Direct character℈UTF-8 HTML text

When to Use Which

SituationUse
Apothecaries’ scruple weight℈ or ℈
Historical pharmacy / medical texts℈ (with unit explanation)
Generated text via ::before / ::aftercontent: "\2108"
Apothecaries’ ounceUse U+2125 (℥)
Euler constantUse U+2107 (ℇ)

Live Preview

Scruple in weight contexts, compared with related Letterlike Symbols.

Weight snippet 3 ℈   (3 scruples)
Large glyph ℈
Hex entity ℈ → ℈
vs ounce / Euler ℈  |  ℥  |  ℇ
With entities Hex: ℈ | Decimal: ℈

Complete HTML Example

One page that shows this symbol with hex, decimal, and CSS. Use View Output or open the live editor.

Hex + Decimal + CSS

Three ways to produce ℈ in a single document (no named entity).

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Scruple (℈)</title>
  <style>
    #point::after {
      content: "\2108";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x2108;</p>
  <p>Using HTML Code: &#8456;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Weight: 3 &#x2108;</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+2108 → &#x2108; in HTML. The browser turns it into ℈.

2. Decimal: same code point as 8456 → &#8456;. Same result as hex.

3. Named: HTML5 does not define a named entity for this character — use hex or decimal instead.

4. CSS: use \2108 in content (not an HTML entity). #point::after appends that ℈ after the paragraph text.

Pitfalls & Tips

Common mistakes when working with Scruple.

Look-alikes

℈ ≠ ℥ ≠ ℇ

U+2108 is scruple. U+2125 is ounce sign. U+2107 is Euler constant — similar shapes, different meanings.

Named

No &…; name

Do not invent a name. Use &#x2108; or &#8456;.

Context

Historical, not modern dosing

Prefer SI units (mg, g) for clinical work. Use ℈ only when documenting historical apothecaries’ notation.

Fonts

Glyph coverage

Letterlike Symbols coverage varies. Test fonts and provide a fallback stack for rare unit glyphs.

CSS vs HTML

Do not mix escapes

\2108 belongs in CSS. &#x2108; / &#8456; belong in HTML.

Semicolon

End references

Always finish with ; — write &#x2108;, not &#x2108.

Browser Support

Scruple (U+2108) and its entity forms (&#x2108;, &#8456;, CSS \\2108) are supported in all modern browsers. Glyph coverage depends on the font.

✓ Universal encoding

Scruple (&#x2108;)

Encode with hex, decimal, or CSS escape — or type ℈ directly in UTF-8 HTML. No named entity.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer IE 9+
Yes*
U+2108 Full support

Bottom line: Prefer &#x2108; for readable HTML. Use \\2108 only inside CSS content. Do not confuse with ounce sign or Euler constant.

Key Takeaways

  • Unicode: this symbol is U+2108 (decimal 8456) — apothecaries’ scruple.
  • HTML: prefer &#x2108; — or use &#8456;. No named entity.
  • CSS: use \2108 inside content for generated text.
  • Watch out: not the same as ounce sign (U+2125) or Euler constant (U+2107).

One line: U+2108 → &#x2108; / &#8456; / CSS \2108 (no named entity).

Frequently Asked Questions

Use &#x2108; (hex), &#8456; (decimal), or the CSS escape \2108 in the content property. All render ℈ when the font supports Letterlike Symbols. There is no named HTML entity.
U+2108 (SCRUPLE). Hex 2108, decimal 8456. It belongs to Letterlike Symbols (U+2100–U+214F). It is an apothecaries’ weight equal to 20 grains (≈ 1.296 g).
No. HTML5 does not define a named entity for U+2108. Use numeric references like &#x2108; or &#8456;.
Use it in historical pharmacy texts, apothecaries’ weight tables, medical history docs, and specialty references that need the traditional scruple glyph — not for modern clinical dosing.
HTML entities (&#8456; or &#x2108;) go in markup. The CSS escape \2108 is used in stylesheets (usually in the content property of ::before/::after). Both render ℈.
U+2108 is SCRUPLE (20 grains). U+2125 is the OUNCE SIGN (larger apothecaries’ unit). U+2107 is EULER CONSTANT — a math look-alike, not a weight.

Did you know?

Scruple is Unicode U+2108 (decimal 8456) — SCRUPLE, an apothecaries’ weight equal to 20 grains (≈ 1.296 g). HTML5 has no named entity — use &#x2108; or &#8456;. Do not confuse it with the ounce sign (U+2125) or Euler constant (U+2107).

Next: Seagull Below

Learn the HTML entity for Seagull Below — next in this sequence.

Continue tutorial →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful