HTML Entity for Lowercase B Topbar (ƃ)

What You'll Learn
How to display the lowercase b with topbar (ƃ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is the Latin small letter b with topbar—a horizontal bar above the letter b. It was used in the Zhuang alphabet (1957–1986, later replaced by the digraph “mb”) and is referred to as “b with top bar” in Caribbean language notation. It is U+0183 in the Latin Extended-B block.
Render it with ƃ, ƃ, or CSS escape \0183. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase B Topbar Entity
U+0183Latin Extended-B
ƃHexadecimal reference
ƃDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0183
Hex code ƃ
HTML code ƃ
Named entity (none)
CSS code \0183
Meaning Latin small letter b with topbar
Also known as b with top bar
Historical use Zhuang alphabet (1957–1986)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase b topbar (ƃ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0183";
}
</style>
</head>
<body>
<p>Symbol (hex): ƃ</p>
<p>Symbol (decimal): ƃ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase b topbar (ƃ) renders correctly in modern browsers when UTF-8 is used and a font with Latin Extended-B support is available:
👀 Live Preview
See the lowercase b topbar (ƃ) and how it differs from related characters:
🧠 How It Works
Hexadecimal Code
ƃ uses the Unicode hexadecimal value 0183 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ƃ uses the decimal Unicode value 387 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\0183 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+0183 sits in Latin Extended-B. Do not confuse ƃ with plain b (U+0062) or ƅ (b tone six, U+0185). There is no named HTML entity.
Use Cases
The lowercase b topbar (ƃ) is commonly used in:
Digitize 1957–1986 Zhuang orthography that used ƃ before the digraph “mb” replaced it.
Display extended Latin symbols in linguistics articles and language documentation.
Represent “b with top bar” in Caribbean language orthographies and academic references.
Represent historical orthographies and Southeast Asian language research.
Showcase Latin Extended-B coverage in font demos and type design.
Document Latin Extended-B character sets for developers and linguists.
Support proper rendering of minority and historical writing systems using the b with topbar.
💡 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
- Use fonts that support Latin Extended-B (U+0180–U+024F)
- Provide context (e.g. Zhuang or Caribbean orthography) when using this symbol
- Distinguish ƃ from plain
band from related b variants
Don’t
- Assume a named entity exists—there is none for ƃ
- Substitute plain
bor “mb” when ƃ is required for historical accuracy - Put CSS escape
\0183in HTML text nodes - Assume all fonts render Latin Extended-B glyphs identically
- 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
\0183Unicode U+0183 — LATIN SMALL LETTER B WITH TOPBAR
Used in Zhuang (1957–1986) and Caribbean “b with top bar” notation
Previous: Lowercase B Tone Six (ƅ) Next: Lowercase C
❓ Frequently Asked Questions
ƃ (hex), ƃ (decimal), or \0183 in CSS content. There is no named HTML entity; use numeric codes or CSS.U+0183 (LATIN SMALL LETTER B WITH TOPBAR). Latin Extended-B block. Hex 0183, decimal 387. Historically used in the Zhuang alphabet and Caribbean language notation.ƃ or ƃ) is used in HTML content. The CSS entity (\0183) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ƃ but in different contexts.ƃ or ƃ in HTML, or \0183 in CSS. This is standard for extended Latin characters.Explore More HTML Entities!
Discover 1500+ HTML character references — extended Latin letters, tone marks, and more.
8 people found this page helpful
