HTML Entity for Ounce Sign (℥)

What You'll Learn
How to display the Ounce Sign (℥) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2125 (OUNCE SIGN) in the Letterlike Symbols block (U+2100–U+214F)—a typographic symbol for the apothecaries’ ounce, used in historical pharmacy, vintage recipes, and specialized weight notation.
Render it with ℥, ℥, or CSS escape \2125. There is no named HTML entity. Do not confuse ℥ with plain text oz, U+2126 (Ω, ohm sign), or U+2114 (℔, lb bar symbol for pounds).
⚡ Quick Reference — Ounce Sign
U+2125Letterlike Symbols
℥Hexadecimal reference
℥Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2125
Hex code ℥
HTML code ℥
Named entity (none)
CSS code \2125
Meaning Ounce sign (apothecaries\u2019 ounce)
Related oz = ASCII abbreviation (not U+2125)
U+2114 = lb bar symbol (℔)
U+2126 = ohm sign (Ω)
U+2113 = script small l / liter (ℓ, ℓ)
Block Letterlike Symbols (U+2100–U+214F)Complete HTML Example
A simple example showing ℥ using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\2125";
}
</style>
</head>
<body>
<p>Ounce sign (hex): ℥</p>
<p>Ounce sign (decimal): ℥</p>
<p id="point">Ounce sign (CSS): </p>
</body>
</html>🌐 Browser Support
The Ounce Sign (℥) is widely supported in all modern browsers:
👀 Live Preview
See the Ounce Sign (℥) in weight and measurement contexts:
🧠 How It Works
Hexadecimal Code
℥ uses the Unicode hexadecimal value 2125 to display the ounce sign.
Decimal HTML Code
℥ uses the decimal Unicode value 8485 for the same character.
CSS Entity
\2125 is used in CSS stylesheets in the content property of pseudo-elements for unit labels or generated text.
Weight unit result
All three methods render ℥. Unicode U+2125 in Letterlike Symbols. Next: Outlined Black Star (✭).
Use Cases
The Ounce Sign (℥) is commonly used in:
Historical pharmacy weights and apothecaries\u2019 ounce measurements.
Old formulary and compound recipes reproduced on the web.
Typography and Unicode guides documenting weight symbols.
History of measurement, pharmacology, and metrology articles.
Specialized unit pickers and historical data displays.
Letterlike Symbols in design systems and symbol font demos.
Pair ℥ with “ounce” or numeric values for clarity.
💡 Best Practices
Do
- Use
℥or℥for apothecaries\u2019 ounce notation - Use plain
ozfor modern avoirdupois ounces when appropriate - Set
<meta charset="utf-8">for reliable rendering - Include numeric values alongside the symbol (e.g. 2℥)
- Pick one numeric style per project for consistency
Don’t
- Confuse ℥ with ohm sign Ω or lb symbol ℔
- Assume ℥ equals modern “oz” in all contexts
- Use padded Unicode notation like U+02125—the correct value is
U+2125 - Use CSS escape
\2125in HTML text nodes - Rely on ℥ alone without a numeric quantity for accessibility
Key Takeaways
Two HTML numeric references plus CSS for U+2125
℥ ℥For CSS stylesheets, use \2125 in the content property
Unicode U+2125 — OUNCE SIGN (apothecaries\u2019 ounce)
Distinct from plain oz, ohm Ω, and pound ℔
Previous: Orthodox Cross (☦) Next: Outlined Black Star (✭)
❓ Frequently Asked Questions
℥ (hex), ℥ (decimal), or \2125 in CSS content. There is no named entity. All three render ℥.U+2125 (OUNCE SIGN). Letterlike Symbols block (U+2100–U+214F). Hex 2125, decimal 8485.Explore More HTML Entities!
Discover 1500+ HTML character references — punctuation, symbols, and more.
8 people found this page helpful
