HTML Entity for Lowercase B Stroke (ƀ)

What You'll Learn
How to display the lowercase b with stroke (ƀ) in HTML using hexadecimal, decimal, and CSS escape methods. Also called barred b, this character is the Latin small letter b with stroke, used in Americanist and Indo-Europeanist phonetic transcription for phonetic beta and in Old Saxon manuscripts. It is U+0180 in the Latin Extended-B block.
Render it with ƀ, ƀ, or CSS escape \0180. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase B Stroke Entity
U+0180Latin Extended-B
ƀHexadecimal reference
ƀDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0180
Hex code ƀ
HTML code ƀ
Named entity (none)
CSS code \0180
Meaning Latin small letter b with stroke
Also known as barred b / phonetic beta
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase b stroke (ƀ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0180";
}
</style>
</head>
<body>
<p>Symbol (hex): ƀ</p>
<p>Symbol (decimal): ƀ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase b stroke (ƀ) 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 stroke (ƀ) and how it differs from related characters:
🧠 How It Works
Hexadecimal Code
ƀ uses the Unicode hexadecimal value 0180 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ƀ uses the decimal Unicode value 384 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\0180 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+0180 sits in Latin Extended-B. Do not confuse ƀ with plain b (U+0062) or ɓ (b with hook, U+0253). There is no named HTML entity.
Use Cases
The lowercase b stroke (ƀ) is commonly used in:
Represent phonetic beta in Americanist and Indo-Europeanist notation (barred b).
Display extended Latin symbols in linguistics articles and language research.
Digitize and display characters from Old Saxon manuscripts and historical documents.
Showcase Latin Extended-B coverage in font demos and type design.
Display phonetic symbols in language reference works and pronunciation keys.
Document Latin Extended-B and phonetic character sets on Unicode reference sites.
Support proper rendering of minority and historical languages that use the barred b.
💡 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. Americanist phonetic notation) when using this symbol
- Distinguish ƀ from plain
band from ɓ (b with hook)
Don’t
- Assume a named entity exists—there is none for ƀ
- Substitute plain
bwhen ƀ is required for phonetic accuracy - Put CSS escape
\0180in 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
\0180Unicode U+0180 — LATIN SMALL LETTER B WITH STROKE
Barred b used in Americanist phonetics, Old Saxon, and extended Latin typography
Previous: Lowercase B Hook (ɓ) Next: Lowercase B Tone Six
❓ Frequently Asked Questions
ƀ (hex), ƀ (decimal), or \0180 in CSS content. There is no named HTML entity; use numeric codes or CSS.U+0180 (LATIN SMALL LETTER B WITH STROKE). Latin Extended-B block. Hex 0180, decimal 384. Used in Americanist phonetic transcription and linguistic notation.ƀ or ƀ) is used in HTML content. The CSS entity (\0180) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ƀ but in different contexts.ƀ or ƀ in HTML, or \0180 in CSS. This is standard for phonetic and extended Latin characters.Explore More HTML Entities!
Discover 1500+ HTML character references — phonetic symbols, accented letters, and more.
8 people found this page helpful
