HTML Entity for Uppercase B Six (Ƅ)

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

What You'll Learn

How to display the uppercase B tone six (Ƅ) in HTML using hexadecimal, decimal, and CSS escape methods. This character marks the sixth tone in some orthographies (notably historical Zhuang writing) and is U+0184 in the Latin Extended-B block. Its Unicode name is LATIN CAPITAL LETTER B WITH TOPBAR.

Render it with Ƅ, Ƅ, or CSS escape \0184. There is no named HTML entity for this character, so numeric codes or CSS must be used.

⚡ Quick Reference — Uppercase B Six Entity

Unicode U+0184

Latin Extended-B

Hex Code Ƅ

Hexadecimal reference

HTML Code Ƅ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0184
Hex code       Ƅ
HTML code      Ƅ
Named entity   (none)
CSS code       \0184
Meaning        Latin capital letter B with topbar (tone six)
Related        U+0185 = lowercase (ƅ)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the uppercase B tone six (Ƅ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0184";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0184;</p>
<p>Symbol (decimal): &#388;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase B tone six (Ƅ) renders correctly in modern browsers when UTF-8 is used:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase B tone six (Ƅ) and how it differs from related characters:

Large glyphƄ
Character typeLatin capital B with topbar (tone six)
Case pairƄ (U+0184) / ƅ (U+0185)
Not the same asB (U+0042), Ɓ (B hook), or Ƃ (B topbar)
Numeric refs&#x0184; &#388; \0184

🧠 How It Works

1

Hexadecimal Code

&#x0184; uses the Unicode hexadecimal value 0184 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#388; uses the decimal Unicode value 388 to display the same character. A common method for Latin Extended-B characters.

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce the glyph: Ƅ. Unicode U+0184 sits in Latin Extended-B. Lowercase equivalent: U+0185 (ƅ). Do not confuse Ƅ with Ƃ (B topbar) or plain B (U+0042). There is no named HTML entity.

Use Cases

The uppercase B tone six (Ƅ) is commonly used in:

🔤 Tonal orthography

Tone-six notation in Zhuang and related writing systems.

📚 Linguistics

Language research, dictionaries, and scholarly texts with extended Latin characters.

🌐 Internationalization

Websites requiring correct rendering of Latin Extended-B for specialized language content.

📄 Publishing

Books and articles documenting historical or regional orthographies using Ƅ.

🎨 Typography

Specialized fonts and CSS-generated content for tonal letter display.

🔍 Search & SEO

Correct encoding so specialized content is indexed and displayed consistently.

📧 Forms & Input

User input that may contain Ƅ; use UTF-8 encoding and numeric entities as needed.

💡 Best Practices

Do

  • Use &#388; or &#x0184; 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 topbar), Ɓ (B hook), and plain B

Don’t

  • Assume a named entity exists—there is none for Ƅ
  • Substitute plain B when Ƅ is required for tonal accuracy
  • Confuse Ƅ (tone six) with Ƃ (B topbar) or Ɓ (B hook)
  • Put CSS escape \0184 in HTML text nodes
  • Mix entity styles randomly in one file

Key Takeaways

1

Three references render Ƅ (no named entity)

&#x0184; &#388;
2

For CSS stylesheets, use the escape in the content property

\0184
3

Unicode U+0184 — LATIN CAPITAL LETTER B WITH TOPBAR

4

Used in tone-six orthography and extended Latin linguistic text

❓ Frequently Asked Questions

Use &#x0184; (hex), &#388; (decimal), or \0184 in CSS content. There is no named HTML entity; use numeric codes or CSS.
U+0184 (LATIN CAPITAL LETTER B WITH TOPBAR). Latin Extended-B block. Hex 0184, decimal 388. Used in tone-six orthography such as historical Zhuang writing.
In linguistic and tonal orthography, Zhuang and related writing systems, extended Latin text, and any content requiring the B tone-six character.
HTML code (&#388; or &#x0184;) is used in HTML content. The CSS entity (\0184) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ƅ but in different contexts.
Named HTML entities are mainly for ASCII, Latin-1, and common symbols. Extended Latin characters like Ƅ use numeric codes because they belong to specialized Unicode blocks. This is standard for Latin Extended-B characters.

Explore More HTML Entities!

Discover 1500+ HTML character references — tonal letters, symbols, 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