HTML Entity for Uppercase B Topbar (Ƃ)

What You'll Learn
How to display the uppercase B with topbar (Ƃ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is a variant of the Latin letter B with a topbar diacritic and is part of the Latin Extended-B block (U+0182). It appears in Zhuang orthography and extended Latin linguistic text.
Render it with Ƃ, Ƃ, or CSS escape \0182. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase B Topbar Entity
U+0182Latin Extended-B
ƂHexadecimal reference
ƂDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0182
Hex code Ƃ
HTML code Ƃ
Named entity (none)
CSS code \0182
Meaning Latin capital letter B with topbar
Related U+0183 = lowercase (ƃ)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase B topbar (Ƃ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0182";
}
</style>
</head>
<body>
<p>Symbol (hex): Ƃ</p>
<p>Symbol (decimal): Ƃ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase B topbar (Ƃ) renders correctly in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase B topbar (Ƃ) and how it differs from related characters:
🧠 How It Works
Hexadecimal Code
Ƃ uses the Unicode hexadecimal value 0182 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ƃ uses the decimal Unicode value 386 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\0182 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: Ƃ. Unicode U+0182 sits in Latin Extended-B. Lowercase equivalent: U+0183 (ƃ). Do not confuse Ƃ with Ƅ (B tone six) or plain B (U+0042). There is no named HTML entity.
Use Cases
The uppercase B topbar (Ƃ) is commonly used in:
Extended Latin orthography and Zhuang-related writing systems using Ƃ.
Dictionary entries, scholarly texts, and language references with extended Latin characters.
Websites requiring correct rendering of Latin Extended-B for specialized language content.
Books, articles, and editorial content with phonetic scripts or specialized terminology.
Specialized fonts and CSS-generated content for extended Latin letter display.
Correct encoding so specialized content is indexed and displayed consistently.
User input that may contain Ƃ; use UTF-8 encoding and numeric entities as needed.
💡 Best Practices
Do
- Use
ƂorƂin HTML (no named entity exists) - Serve pages as UTF-8; you can also type Ƃ directly in UTF-8 source
- Pick one style (hex or decimal) per project for consistency
- Use fonts that support Latin Extended-B (U+0180–U+024F)
- Distinguish Ƃ from Ƅ (B tone six), Ɓ (B hook), and plain
B
Don’t
- Assume a named entity exists—there is none for Ƃ
- Substitute plain
Bwhen Ƃ is required for orthographic accuracy - Confuse Ƃ (B topbar) with Ƅ (B tone six) or Ɓ (B hook)
- Put CSS escape
\0182in HTML text nodes - Mix entity styles randomly in one file
Key Takeaways
Three references render Ƃ (no named entity)
Ƃ ƂFor CSS stylesheets, use the escape in the content property
\0182Unicode U+0182 — LATIN CAPITAL LETTER B WITH TOPBAR
Used in extended Latin orthography and Zhuang-related linguistic text
Previous: Uppercase B Six (Ƅ) Next: Uppercase C
❓ Frequently Asked Questions
Ƃ (hex), Ƃ (decimal), or \0182 in CSS content. There is no named HTML entity; use numeric codes or CSS.U+0182 (LATIN CAPITAL LETTER B WITH TOPBAR). Latin Extended-B block. Hex 0182, decimal 386. A variant of B with a topbar diacritic.Ƃ or Ƃ) is used in HTML content. The CSS entity (\0182) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ƃ but in different contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — extended Latin letters, symbols, and more.
8 people found this page helpful
