HTML Entity for Lowercase B Tone Six (ƅ)

What You'll Learn
How to display the lowercase b tone six (ƅ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is the Latin small letter tone six, historically used in the Zhuang and Bouyei alphabets (1957–1986) to indicate the sixth tone with mid-level pitch. It is U+0185 in the Latin Extended-B block.
Render it with ƅ, ƅ, or CSS escape \0185. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase B Tone Six Entity
U+0185Latin Extended-B
ƅHexadecimal reference
ƅDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0185
Hex code ƅ
HTML code ƅ
Named entity (none)
CSS code \0185
Meaning Latin small letter tone six
Historical use Zhuang & Bouyei (6th tone, 1957–1986)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase b tone six (ƅ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0185";
}
</style>
</head>
<body>
<p>Symbol (hex): ƅ</p>
<p>Symbol (decimal): ƅ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase b tone six (ƅ) 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 tone six (ƅ) and how it differs from related characters:
🧠 How It Works
Hexadecimal Code
ƅ uses the Unicode hexadecimal value 0185 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ƅ uses the decimal Unicode value 389 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\0185 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+0185 sits in Latin Extended-B. Do not confuse ƅ with plain b (U+0062) or ƀ (b with stroke, U+0180). There is no named HTML entity.
Use Cases
The lowercase b tone six (ƅ) is commonly used in:
Digitize 1957–1986 orthographies that used ƅ for the sixth tone.
Display tone letters and tonal writing system symbols in linguistics articles.
Represent historical orthographies and Southeast Asian language research.
Showcase Latin Extended-B and tone letter coverage in font demos.
Document Latin Extended-B and tonal character sets for developers and linguists.
Display historical Zhuang/Bouyei script in heritage and educational content.
Support proper rendering of minority and historical writing systems using tone letters.
💡 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/Bouyei historical 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
bwhen ƅ is required for tonal accuracy - Put CSS escape
\0185in HTML text nodes - Assume all fonts render Latin Extended-B tone letters 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
\0185Unicode U+0185 — LATIN SMALL LETTER TONE SIX
Historically used in Zhuang and Bouyei for the sixth tone (1957–1986)
Previous: Lowercase B Stroke (ƀ) Next: Lowercase B Topbar (ƃ)
❓ Frequently Asked Questions
ƅ (hex), ƅ (decimal), or \0185 in CSS content. There is no named HTML entity; use numeric codes or CSS.U+0185 (LATIN SMALL LETTER TONE SIX). Latin Extended-B block. Hex 0185, decimal 389. Historically used in Zhuang and Bouyei orthography for the sixth tone.ƅ or ƅ) is used in HTML content. The CSS entity (\0185) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ƅ but in different contexts.ƅ or ƅ in HTML, or \0185 in CSS. This is standard for tonal and extended Latin characters.Explore More HTML Entities!
Discover 1500+ HTML character references — tone letters, accented letters, and more.
8 people found this page helpful
