HTML Entity for Uppercase Z Stroke (Ƶ)

What You'll Learn
How to display the uppercase Z with stroke (Ƶ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01B5 (LATIN CAPITAL LETTER Z WITH STROKE) in the Latin Extended-B block—a Z with a horizontal stroke through the letter. It is the uppercase pair of ƶ (U+01B6) and appears in Berber (Amazigh) orthography, linguistic notation, and specialized romanization systems.
Render it with Ƶ, Ƶ, or CSS escape \01B5. There is no named HTML entity for this character. Do not confuse Ƶ (Z stroke) with plain Z (U+005A), Ȥ (Z hook), or accented Z letters like Ž (Z caron).
⚡ Quick Reference — Uppercase Z Stroke Entity
U+01B5Latin Extended-B
ƵHexadecimal reference
ƵDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01B5
Hex code Ƶ
HTML code Ƶ
Named entity (none)
CSS code \01B5
Meaning Latin capital letter Z with stroke
Related U+01B6 = ƶ (lowercase z stroke)
U+005A = Z (plain letter)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase Z stroke (Ƶ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01B5";
}
</style>
</head>
<body>
<p>Symbol (hex): Ƶ</p>
<p>Symbol (decimal): Ƶ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase Z stroke (Ƶ) is supported in modern browsers when the font includes Latin Extended-B glyphs:
👀 Live Preview
See the uppercase Z stroke (Ƶ) in orthographic and linguistic contexts:
🧠 How It Works
Hexadecimal Code
Ƶ uses the Unicode hexadecimal value 01B5 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ƶ uses the decimal Unicode value 437 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\01B5 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Use Cases
The uppercase Z stroke (Ƶ) is commonly used in:
Capital form of the z-with-stroke letter in Amazigh (Berber) writing systems and romanization.
Phonetic transcription, dictionaries, and academic papers using specialized Latin letters in uppercase.
Scholarly publications and language studies requiring correct stroked-letter notation at word starts.
Books, journals, and digital content in languages using the Z-with-stroke character.
Multilingual websites and CMS content requiring extended Latin character support.
Font specimens and design references showcasing Latin Extended-B characters.
When building HTML from linguistic data, using Ƶ or Ƶ guarantees correct output.
💡 Best Practices
Do
- Serve pages as UTF-8; you can type Ƶ directly in UTF-8 source
- Use numeric references (
ƵorƵ) when escaping is required - Use
\01B5in CSScontentwhen generating the symbol via pseudo-elements - Use fonts that support Latin Extended-B characters
- Distinguish Ƶ (Z stroke) from plain
Zand other Z variants
Don’t
- Substitute plain
Zwhen Ƶ is required for correct orthography - Confuse Ƶ (Z stroke, U+01B5) with Ȥ (Z hook) or Ž (Z caron)
- Use the old incorrect CSS escape
\001B5—the correct value is\01B5 - Expect a named HTML entity—none exists for Ƶ
- Put CSS escape
\01B5in HTML text nodes
Key Takeaways
Type Ƶ directly, or use hex/decimal references
Ƶ ƵFor CSS stylesheets, use the escape in the content property
\01B5Unicode U+01B5 — LATIN CAPITAL LETTER Z WITH STROKE
Berber orthography and linguistics; lowercase is ƶ (U+01B6)
Previous: Uppercase Z Hook (Ȥ) Next: Upsilon
❓ Frequently Asked Questions
Ƶ (hex), Ƶ (decimal), or \01B5 in CSS content. There is no named HTML entity. In UTF-8 you can also type Ƶ directly.U+01B5 (LATIN CAPITAL LETTER Z WITH STROKE). Latin Extended-B block. Hex 01B5, decimal 437. Used in Berber orthography and linguistic notation. Lowercase form is U+01B6 (ƶ).Z (U+005A) is the standard uppercase Latin letter. They are different characters with different Unicode values.Ƶ or Ƶ in HTML, or \01B5 in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
