HTML Entity for Lb Bar Symbol (℔)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+2114

What You'll Learn

How to display the Lb Bar symbol (℔) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2114 (LB BAR SYMBOL) in the Letterlike Symbols block (U+2100–U+214F)—the traditional abbreviation for the pound (weight unit), derived from the Latin libra, used in recipes, nutrition labels, shipping, and technical content.

Render it with ℔, ℔, or CSS escape \2114. There is no named HTML entity. Do not confuse ℔ (weight) with the pound sterling sign U+00A3 (£, £, currency).

⚡ Quick Reference — Lb Bar Symbol

Unicode U+2114

Letterlike Symbols

Hex Code ℔

Hexadecimal reference

HTML Code ℔

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2114
Hex code       ℔
HTML code      ℔
Named entity   (none)
CSS code       \2114
Meaning        Pound (weight) abbreviation
Related        U+00A3 = Pound sterling (£)
               U+2113 = Script small l (ℓ)
1

Complete HTML Example

A simple example showing the Lb Bar symbol (℔) with hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2114";
  }
 </style>
</head>
<body>
<p>Lb Bar Symbol using Hexadecimal: &#x2114;</p>
<p>Lb Bar Symbol using HTML Code: &#8468;</p>
<p id="point">Lb Bar Symbol using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Lb Bar symbol (℔) is widely supported in modern browsers when the font includes Letterlike Symbols:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Lb Bar symbol (℔) in weight and measurement contexts:

Recipe Flour: 2 ℔
Shipping Package weight: 5 ℔
vs currency ℔ (weight) vs £ (sterling)
Large glyph
Numeric refs &#x2114; &#8468; \2114

🧠 How It Works

1

Hexadecimal Code

&#x2114; uses the Unicode hexadecimal value 2114 to display the Lb Bar symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8468; uses the decimal Unicode value 8468 to display the same character.

HTML markup
3

CSS Entity

\2114 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::after.

CSS stylesheet
=

Same visual result

All three methods produce (℔). Unicode U+2114 is in Letterlike Symbols. Next: Left Angle Above (̚).

Use Cases

The Lb Bar symbol (℔) is commonly used in:

🍳 Recipes

Ingredient weights in pounds (e.g. flour 2 ℔) in recipe cards and cooking guides.

📋 Nutrition

Weight units on nutrition facts, product labels, and dietary content.

📦 Shipping

Package weight, shipping weight, or product weight in e-commerce and logistics.

🔬 Science

Lab reports, engineering specs, and technical content referencing weight in lb.

💊 Healthcare

Weight-based dosing, patient weight, or medication weight in healthcare apps.

🏋️ Fitness

Body weight, equipment weight, or targets in fitness and health applications.

💡 Best Practices

Do

  • Add aria-label="pounds" or visible text (e.g. “lb”) for accessibility
  • Use fonts that support Letterlike Symbols (U+2114)
  • Set <meta charset="utf-8">
  • Pair with numeric values (e.g. 5 ℔) for clarity
  • Keep one numeric style (hex or decimal) per project
  • Use ℔ for weight; use £ or &pound; for currency

Don’t

  • Confuse ℔ (weight, U+2114) with £ (sterling, U+00A3)
  • Expect a named HTML entity for U+2114
  • Use CSS \2114 inside HTML text nodes
  • Rely on the symbol alone without accessible unit text
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML numeric references plus CSS render ℔

&#x2114; &#8468;
2

For CSS, use \2114 in the content property

3

Unicode U+2114 — LB BAR SYMBOL (℔)

4

Letterlike Symbols block (U+2100–U+214F)

❓ Frequently Asked Questions

Use &#x2114; (hex), &#8468; (decimal), or \2114 in CSS content. There is no named entity. All three methods render the Lb Bar symbol (℔) correctly.
U+2114 (LB BAR SYMBOL). Letterlike Symbols block (U+2100–U+214F). Hex 2114, decimal 8468. Traditional abbreviation for the pound (weight unit), from Latin libra.
In recipes and cooking sites, nutrition and food labels, shipping and packaging content, scientific and technical documents, pharmacy and medical content, fitness and weight tracking apps, and any content that displays weight in pounds.
HTML references (&#8468; or &#x2114;) go in markup. The CSS escape \2114 is used in stylesheets, typically on ::before or ::after. Both produce ℔ (℔).
Named entities cover common characters; Letterlike Symbols like U+2114 use numeric hex (&#x2114;) or decimal (&#8468;) codes. That is standard for letterlike and symbolic characters in HTML.

Explore More HTML Entities!

Discover 1500+ HTML character references — letterlike symbols, units, and more.

All HTML Entities →

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