HTML Entity for Lowercase 5 Tone (ƽ)

What You'll Learn
How to display the Lowercase 5 Tone (ƽ) in HTML using various entity methods. The Latin Small Letter Tone Five is used in Zhuang (old orthography) and in phonetic or tonal notation and is useful for linguistic, educational, and language-related content.
This character is part of the Latin Extended-B Unicode block and can be rendered with a hexadecimal reference, a decimal reference, or a CSS escape in the content property. There is no named HTML entity for this letter.
⚡ Quick Reference — Lowercase 5 Tone Entity
U+01BDLatin Extended-B
ƽHexadecimal reference
ƽDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01BD
Hex code ƽ
HTML code ƽ
Named entity (none)
CSS code \01BD
Meaning Latin small letter tone five
Related U+01BC = Ƽ (uppercase tone five)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the Lowercase 5 Tone (ƽ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01BD";
}
</style>
</head>
<body>
<p>Symbol (hex): ƽ</p>
<p>Symbol (decimal): ƽ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The Lowercase 5 Tone (ƽ) is supported in modern browsers when the font includes Latin Extended-B glyphs:
👀 Live Preview
See the Lowercase 5 Tone (ƽ) in linguistic and educational contexts:
🧠 How It Works
Hexadecimal Code
ƽ uses the Unicode hexadecimal value 01BD to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ƽ uses the decimal Unicode value 445 to display the same character. This is one of the most commonly used methods.
CSS Entity
\01BD 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+01BD sits in Latin Extended-B. The uppercase equivalent is U+01BC (Ƽ). There is no named HTML entity.
Use Cases
The Lowercase 5 Tone (ƽ) is commonly used in:
Display correct spelling in Zhuang (old orthography) and language resources.
Use in phonetic transcription, tonal marking, and linguistic notation.
Teach pronunciation, tone, or orthography in educational content.
Use in papers on phonology, orthography, or minority languages.
Display headwords and pronunciation in dictionaries and lexical resources.
Support Zhuang or other languages that use this character in localized content.
Mark tone or phonetic features in transcription and annotation tools.
💡 Best Practices
Do
- Set
langattributes (e.g.lang="za") when displaying Zhuang text - Use fonts that support Latin Extended-B (Noto Sans, Gentium, etc.)
- Use numeric references (
ƽorƽ) consistently in HTML - Use U+01BC (Ƽ) for the uppercase tone-five form when needed
- Ensure UTF-8 encoding on pages and server responses
Don’t
- Confuse ƽ (tone five) with similar Latin letters like
porb - Put CSS escape
\01BDin HTML text nodes - Expect a named HTML entity—only numeric codes work for ƽ
- Assume all system fonts render ƽ correctly without testing
- Use the character without context when readers may not know its linguistic role
Key Takeaways
Three references render ƽ (no named entity)
ƽ ƽFor CSS stylesheets, use the escape in the content property
\01BDUnicode U+01BD — LATIN SMALL LETTER TONE FIVE
Used in Zhuang (old orthography) and phonetic/tonal notation
Previous: Lower Right Shadowed White Square (❑) Next: Lowercase A
❓ Frequently Asked Questions
ƽ (hex), ƽ (decimal), or \01BD in CSS content. All produce ƽ. There is no named HTML entity.U+01BD (LATIN SMALL LETTER TONE FIVE). Latin Extended-B block. Hex 01BD, decimal 445. Used in Zhuang (old orthography) and phonetic notation; uppercase equivalent is U+01BC (Ƽ).ƽ or ƽ) is used in HTML content. The CSS entity (\01BD) 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 — letters, symbols, and more.
8 people found this page helpful
