HTML Entity for Uppercase 5 Tone (Ƽ)

What You'll Learn
How to display the Uppercase 5 Tone (Ƽ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01BC (LATIN CAPITAL LETTER FIVE WITH STROKE) in the Latin Extended-B block (U+0180–U+024F)—used in Zhuang (old orthography) and phonetic or tonal notation for linguistic and language-related content.
Render it with Ƽ, Ƽ, or CSS escape \01BC. There is no named HTML entity. Compare ƽ (Lowercase 5 Tone, U+01BD) and ƻ (Uppercase 2 Stroke, U+01BB) for related stroke-letter variants.
⚡ Quick Reference — Uppercase 5 Tone
U+01BCLatin Extended-B
ƼHexadecimal reference
ƼDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01BC
Hex code Ƽ
HTML code Ƽ
Named entity (none)
CSS code \01BC
Official name LATIN CAPITAL LETTER FIVE WITH STROKE
Also known as Uppercase tone five (Zhuang orthography)
Related U+01BD = Lowercase 5 tone (ƽ)
U+01BB = Uppercase 2 stroke
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the Uppercase 5 Tone (Ƽ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\01BC";
}
</style>
</head>
<body>
<p>Uppercase 5 Tone (hex): Ƽ</p>
<p>Uppercase 5 Tone (decimal): Ƽ</p>
<p id="point">Uppercase 5 Tone (CSS): </p>
</body>
</html>🌐 Browser Support
The Uppercase 5 Tone (Ƽ) is supported in modern browsers when the font includes Latin Extended-B glyphs:
👀 Live Preview
See the Uppercase 5 Tone (Ƽ) in linguistic and typographic contexts:
🧠 How It Works
Hexadecimal Code
Ƽ uses the Unicode hexadecimal value 01BC to display the Uppercase 5 Tone. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ƽ uses the decimal Unicode value 444 to display the same character. This is one of the most commonly used methods.
CSS Entity
\01BC 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+01BC (LATIN CAPITAL LETTER FIVE WITH STROKE) in Latin Extended-B. Related: U+01BD (lowercase), U+01BB (uppercase 2 stroke). No named HTML entity.
Use Cases
The Uppercase 5 Tone (Ƽ) is commonly used in:
Old Zhuang writing systems and historical language documentation.
Tonal and phonetic transcription systems requiring tone-five letters.
Language research materials and phonology documentation.
Scholarly papers and research about tone systems and linguistics.
Educational resources for tonal languages and orthography studies.
Transcription and dictionary content with extended Latin letters.
💡 Best Practices
Do
- Declare UTF-8 encoding (
<meta charset="utf-8">) in your HTML document - Use numeric references (
ƼorƼ) consistently in HTML - Choose fonts that cover Latin Extended-B (U+0180–U+024F) for reliable rendering
- Use
\01BCin CSScontentwhen inserting via pseudo-elements - Pair with lowercase ƽ when documenting both case forms of tone five
Don’t
- Confuse Ƽ (U+01BC, tone five) with the digit 5 (U+0035)
- Put CSS escape
\01BCin HTML text nodes - Expect a named HTML entity—only numeric codes work for Ƽ
- Assume every system font renders Latin Extended-B glyphs
- Mix hex and decimal references inconsistently within the same document
Key Takeaways
Three references render Ƽ (no named entity)
Ƽ ƼFor CSS stylesheets, use the escape in the content property
\01BCUnicode U+01BC — LATIN CAPITAL LETTER FIVE WITH STROKE
Latin Extended-B block (U+0180–U+024F)
Previous: Uppercase 2 Stroke (ƻ) Next: Uppercase A
❓ Frequently Asked Questions
Ƽ (hex), Ƽ (decimal), or \01BC in CSS content. All produce Ƽ. There is no named HTML entity.U+01BC (LATIN CAPITAL LETTER FIVE WITH STROKE). Latin Extended-B block (U+0180–U+024F). Hex 01BC, decimal 444. Used in Zhuang (old orthography) and phonetic notation; lowercase equivalent is U+01BD.Ƽ or Ƽ) is used in HTML content. The CSS entity (\01BC) is used in CSS, e.g. in the content property of ::before or ::after. Both produce Ƽ but in different contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — Latin Extended-B, symbols, and more.
8 people found this page helpful
