HTML Entity for Uppercase B Hook (Ɓ)

What You'll Learn
How to display the uppercase B with hook (Ɓ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is a variant of the Latin letter B with a hook diacritic, used in linguistic text, phonetic scripts, and extended Latin orthography. It is U+0181 in the Latin Extended-B block.
Render it with Ɓ, Ɓ, or CSS escape \0181. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase B Hook Entity
U+0181Latin Extended-B
ƁHexadecimal reference
ƁDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0181
Hex code Ɓ
HTML code Ɓ
Named entity (none)
CSS code \0181
Meaning Latin capital letter B with hook
Related U+0253 = lowercase (ɓ)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase B hook (Ɓ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0181";
}
</style>
</head>
<body>
<p>Symbol (hex): Ɓ</p>
<p>Symbol (decimal): Ɓ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase B hook (Ɓ) renders correctly in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase B hook (Ɓ) and how it differs from related characters:
🧠 How It Works
Hexadecimal Code
Ɓ uses the Unicode hexadecimal value 0181 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ɓ uses the decimal Unicode value 385 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\0181 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+0181 sits in Latin Extended-B. Lowercase equivalent: U+0253 (ɓ). Do not confuse Ɓ with plain B (U+0042). There is no named HTML entity.
Use Cases
The uppercase B hook (Ɓ) is commonly used in:
Phonetic transcriptions and linguistic notation requiring the B-with-hook character.
Dictionary entries, scholarly texts, and language references with extended Latin characters.
Websites requiring correct rendering of Latin Extended-B for African and specialized language content.
Books, articles, and editorial content with phonetic scripts or specialized terminology using Ɓ.
Extended Latin orthographic systems where the hooked B variant is required for accuracy.
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 plain
B(U+0042) and ʙ (small capital B)
Don’t
- Assume a named entity exists—there is none for Ɓ
- Substitute plain
Bwhen Ɓ is required for linguistic accuracy - Put CSS escape
\0181in 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
\0181Unicode U+0181 — LATIN CAPITAL LETTER B WITH HOOK
Used in linguistic notation, phonetic scripts, and extended Latin orthography
Previous: Uppercase B Next: Uppercase B Latin (ʙ)
❓ Frequently Asked Questions
Ɓ (hex), Ɓ (decimal), or \0181 in CSS content. There is no named HTML entity; use numeric codes or CSS.U+0181 (LATIN CAPITAL LETTER B WITH HOOK). Latin Extended-B block. Hex 0181, decimal 385. A variant of B with a hook diacritic used in linguistic notation.Ɓ or Ɓ) is used in HTML content. The CSS entity (\0181) 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 — accented letters, phonetic symbols, and more.
8 people found this page helpful
