HTML Entity for Lowercase Z Stroke (ƶ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+01B6

What You'll Learn

How to display the lowercase z with stroke (ƶ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01B6 in the Latin Extended-B block—a z with a horizontal stroke through the letter. It appears in Berber (Amazigh) orthography, linguistic notation, and specialized romanization systems.

Render it with ƶ, ƶ, or CSS escape \01B6. There is no named HTML entity for this character. In UTF-8 documents you can also type ƶ directly. Do not confuse ƶ (z stroke) with plain z (U+007A), ž (z caron), or ɀ (z swash tail).

⚡ Quick Reference — Lowercase Z Stroke Entity

Unicode U+01B6

Latin Extended-B

Hex Code ƶ

Hexadecimal reference

HTML Code ƶ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+01B6
Hex code       ƶ
HTML code      ƶ
Named entity   (none)
CSS code       \01B6
Meaning        Latin small letter z with stroke
Related        U+01B5 = Ƶ (uppercase)
               U+007A = z (plain letter)
               U+0240 = ɀ (z swash tail)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the lowercase z stroke (ƶ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\01B6";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x01B6;</p>
<p>Symbol (decimal): &#438;</p>
<p>Symbol (direct): ƶ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase z stroke (ƶ) is supported in all modern browsers when the font includes Latin Extended-B glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the lowercase z stroke (ƶ) in orthographic and linguistic contexts:

Large glyphƶ
Unicode nameLatin small letter z with stroke
UppercaseƵ (U+01B5) — Latin capital letter z with stroke
UsageBerber (Amazigh) orthography and specialized linguistic romanization
Not the same asz (plain)  |  ž (z caron)  |  ɀ (z swash tail)
Numeric refs&#x01B6; &#438; \01B6

🧠 How It Works

1

Hexadecimal Code

&#x01B6; uses the Unicode hexadecimal value 01B6 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#438; uses the decimal Unicode value 438 to display the same character. A common method for Latin Extended-B characters.

HTML markup
3

Direct Character

Type ƶ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this stroked letter.

HTML markup
4

CSS Entity

\01B6 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All methods produce the glyph: ƶ. Unicode U+01B6 sits in Latin Extended-B. Do not confuse with plain z (U+007A), ž (z caron), or ɀ (z swash tail).

Use Cases

The lowercase z stroke (ƶ) is commonly used in:

🇪🇪 Berber orthography

Amazigh (Berber) writing systems and romanization where ƶ represents a distinct sound.

🔤 Linguistics

Phonetic transcription, dictionaries, and academic papers using specialized Latin letters.

📚 Academic writing

Scholarly publications and language studies requiring correct stroked-letter notation.

📄 Publishing

Books, journals, and digital content in languages using the z-with-stroke character.

🌐 Internationalization

Multilingual websites and CMS content requiring extended Latin character support.

🎨 Typography

Font specimens and design references showcasing Latin Extended-B characters.

⚙ Programmatic HTML

When building HTML from linguistic data, using &#438; or &#x01B6; guarantees correct output.

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type ƶ directly in UTF-8 source
  • Use numeric references (&#x01B6; or &#438;) when escaping is required
  • Use \01B6 in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support Latin Extended-B characters
  • Distinguish ƶ (z stroke) from plain z and other z variants

Don’t

  • Substitute plain z when ƶ is required for correct orthography
  • Confuse ƶ (z stroke) with ž (z caron) or ɀ (z swash tail)
  • Use the old incorrect CSS escape \001B6—the correct value is \01B6
  • Expect a named HTML entity—none exists for ƶ
  • Put CSS escape \01B6 in HTML text nodes

Key Takeaways

1

Type ƶ directly, or use hex/decimal references

&#x01B6; &#438;
2

For CSS stylesheets, use the escape in the content property

\01B6
3

Unicode U+01B6 — LATIN SMALL LETTER Z WITH STROKE

4

Berber orthography and linguistics; uppercase is Ƶ (U+01B5)

❓ Frequently Asked Questions

Use &#x01B6; (hex), &#438; (decimal), or \01B6 in CSS content. There is no named HTML entity. In UTF-8 you can also type ƶ directly.
U+01B6 (LATIN SMALL LETTER Z WITH STROKE). Latin Extended-B block. Hex 01B6, decimal 438. Used in Berber orthography and linguistic notation. Uppercase form is U+01B5 (Ƶ).
For Berber (Amazigh) orthography, linguistic and academic writing, specialized romanization systems, and any content requiring a lowercase z with a horizontal stroke.
ƶ (U+01B6) is z with a horizontal stroke through the letter, used in Berber orthography and specialized linguistics. z (U+007A) is the plain lowercase Latin letter. They are different characters with different Unicode values.
No. Use &#438; or &#x01B6; in HTML, or \01B6 in CSS.

Explore More HTML Entities!

Discover 1500+ HTML character references — letters, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful