HTML Entity for Uppercase B Lower Stroke (Ƀ)

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