HTML Entity for Lowercase Z Stroke (ƶ)

Beginner
6 min read
Updated: Sep 2026
1 example
Unicode U+01B6

What Is the Lowercase Z Stroke Entity?

Lowercase z with stroke (ƶ) is the Latin Extended-B character at Unicode U+01B6 (LATIN SMALL LETTER Z WITH STROKE). It looks like a z with a horizontal bar through it. Used in some Berber Latin orthographies and specialized typography. HTML5 defines no named entity for it.

Remember
Character     ƶ
Unicode       U+01B6
Named entity  (none)
Hex entity    ƶ
Decimal       ƶ
CSS escape    \01B6

All of these produce the same glyph: ƶ. Prefer a pasted ƶ in UTF-8 pages; use numeric or CSS forms when you need an escape.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct characterƶHTML text (UTF-8 default)
Named entitynoneNot defined in HTML5
Hex entityƶHTML markup
Decimal entityƶHTML markup
CSS escape\01B6Stylesheet content

When to Use Which

SituationUse
Berber / UTF-8 orthographic textType or paste ƶ
Numeric entity requiredƶ or ƶ
Generated text via ::before / ::aftercontent: "\01B6"
Plain letter zType z (U+007A) — see Related Topics
Looking for a named formNone — use hex or decimal instead

Live Preview

Lowercase z with stroke rendered in common contexts.

Glyph ƶ
Large glyph ƶ
Case pair Ƶ ƶ
With entities Hex: ƶ | Decimal: ƶ
Not the same z (U+007A) · ł (ł)

Complete HTML Example

One page that shows lowercase z with stroke with hex, decimal, direct, and CSS forms. Use View Output or open the live editor.

Hex + Decimal + Direct + CSS

Four ways to produce ƶ in a single document (no named entity).

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Lowercase Z Stroke (ƶ) in HTML</title>
  <style>
    #point::after {
      content: "\01B6";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x01B6;</p>
  <p>Using HTML Code: &#438;</p>
  <p>Using Direct Character: ƶ</p>
  <p id="point">Using CSS Entity: </p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+01B6 → &#x01B6; in HTML. Reliable numeric form.

2. Decimal: same code point as 438 → &#438;. Same glyph.

3. Direct: paste ƶ in a UTF-8 file with <meta charset="UTF-8">.

4. CSS: use \01B6 in content (not an HTML entity). #point::after appends that ƶ after the paragraph text.

Pitfalls & Tips

Common mistakes when working with the z stroke entity.

Named

No named entity

HTML5 has no &... name for U+01B6 — use hex or decimal instead. Do not confuse with &lstrok; (Polish ł).

CSS vs HTML

Do not mix escapes

\01B6 belongs in CSS. &#x01B6; / &#438; belong in HTML.

Look-alikes

Not plain z or ł

Plain z is U+007A; Polish ł is U+0142. This letter is U+01B6.

Case

ƶ vs Ƶ

Uppercase is U+01B5 — a different code point from U+01B6.

Semicolon

End references

Always finish with ; — write &#438;, not &#438.

UTF-8

Declare charset

If you paste ƶ directly, serve the page as UTF-8 with <meta charset="UTF-8">.

Browser Support

Lowercase z with stroke (U+01B6) and its entity forms (&#x01B6;, &#438;, CSS \\01B6) are supported in all mainstream browsers. Glyph availability depends on the font.

✓ Universal support

Lowercase Z Stroke (&#x01B6;)

Paste ƶ, or encode with hex, decimal, or CSS escape — same glyph everywhere. No named entity.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+01B6 / entities Full support

Bottom line: Prefer a pasted ƶ in UTF-8 text. Use &#x01B6; / &#438; when a numeric form is required, and \\01B6 only inside CSS content.

Key Takeaways

  • Unicode: z with stroke is U+01B6 (decimal 438), Latin Extended-B.
  • HTML: no named entity — use &#x01B6; or &#438;.
  • CSS: use \01B6 inside content for generated text.
  • Use: Berber / specialized orthography — not the same as plain z or ł.

One line: U+01B6 → &#x01B6; / &#438; / CSS \01B6 (no named entity).

Frequently Asked Questions

Use &#x01B6; (hex), &#438; (decimal), type ƶ in UTF-8, or the CSS escape \01B6 in content. There is no HTML5 named entity for U+01B6.
U+01B6 (LATIN SMALL LETTER Z WITH STROKE). Hex 01B6, decimal 438. It belongs to Latin Extended-B and is used in some Berber Latin orthographies.
No. HTML5 does not define a named entity for this character. Use numeric references like &#438; or &#x01B6; when you need an entity form. (Polish ł uses &lstrok; — that is a different letter.)
Use it for Berber or other orthographies that include this letter, linguistic examples, or CSS-generated content. Prefer a pasted ƶ in UTF-8 when possible. For ordinary English, use plain z.
HTML entities (&#438; or &#x01B6;) go in markup. The CSS escape \01B6 is used in stylesheets (usually in the content property of ::before/::after). Both render ƶ.
Plain z is U+007A. Polish ł is U+0142 (&lstrok;) — a different letter. Z with stroke ƶ is U+01B6. Do not substitute one for another.

Did you know?

Lowercase z with stroke (ƶ) is Unicode U+01B6 (decimal 438) — LATIN SMALL LETTER Z WITH STROKE in Latin Extended-B. HTML5 has no named entity — use &#x01B6; or &#438;. It is used in some Berber (Tamazight) Latin orthographies and specialized typography.

Next: Lowercase Z Swash Tail

Learn the HTML entity for z with swash tail — the next letter in this entity sequence.

Lowercase Z Swash Tail tutorial →

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