HTML Entity for Uppercase Z Stroke (Ƶ)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+01B5

What Is Uppercase Z Stroke?

Uppercase Z stroke (Ƶ) is the Unicode character at U+01B5 in Latin Extended-B. Official name: LATIN CAPITAL LETTER Z WITH STROKE — a capital Z with a horizontal stroke, used in Berber orthography, linguistics, and specialized typography.

Remember
Character     Ƶ
Unicode       U+01B5
Hex entity    Ƶ
Decimal       Ƶ
CSS escape    \01B5
Named entity  (none)
Not the same  Z · ƶ · Ȥ

Prefer Ƶ or Ƶ in HTML markup. You can also type Ƶ in UTF-8. There is no named entity. For the lowercase letter, use U+01B6 (ƶ).

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct characterƵHTML text (UTF-8)
Hex entityƵHTML markup (preferred)
Decimal entityƵHTML markup
CSS escape\01B5Stylesheet content
Named entity—Not defined in HTML5
Lowercase (related)ƶ (U+01B6)Numeric only

When to Use Which

SituationUse
Capital Z with stroke (Ƶ)Ƶ or Ƶ
Lowercase z with stroke (ƶ)ƶ (ƶ)
Capital Z with hook (Ȥ)Ȥ (Ȥ)
Plain capital Z (letter)Z (U+005A)
Double-struck Z (integers)ℤ (ℤ)
Generated text via ::before / ::aftercontent: "\01B5"

Live Preview

Uppercase Z stroke rendered alone and next to related letters.

Large glyph Ƶ
Notation Glyph: Ƶ
Compared Ƶ  |  Z  |  Ȥ  |  ƶ
Hint Compare: Stroke Ƶ | Letter Z | Hook Ȥ | Lower ƶ
With entities Hex: Ƶ | Decimal: Ƶ

Complete HTML Example

One page that shows the letter with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce Ƶ, plus a short comparison note.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Uppercase Z Stroke (Ƶ)</title>
  <style>
    #point::after {
      content: "\01B5";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x1B5;</p>
  <p>Using HTML Code: &#437;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: Ƶ</p>
  <p>Not Z (plain) or Ȥ (hook)</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+01B5 → &#x1B5; in HTML. The browser turns it into Ƶ.

2. Decimal: same code point as 437 → &#437;. Same result as hex.

3. CSS: use \01B5 in content (not an HTML entity). #point::after appends that Ƶ after the paragraph text.

4. Typed / compare: paste Ƶ in UTF-8. Keep plain Z and Ȥ (hook) as separate characters.

Pitfalls & Tips

Common mistakes when working with U+01B5.

Named

No &Z…; name

HTML5 has no named entity for U+01B5. Use &#x1B5; or &#437; — do not invent a name.

vs Z

Not a plain letter

ASCII Z is for everyday words. Ƶ is a specialized Latin letter with a stroke.

vs Ȥ

Not a hook

Ȥ (U+0224) is Z with a hook. Ƶ has a horizontal stroke through the stem — different shape and use.

vs ƶ

Case matters

Ƶ is capital. ƶ is lowercase. Use the matching code point for each case.

Encoding

Keep UTF-8 declared

Latin Extended-B letters display reliably with <meta charset="UTF-8">. Prefer numeric entities when encoding is uncertain.

CSS vs HTML

Do not mix escapes

\01B5 belongs in CSS strings. &#x1B5; / &#437; belong in HTML.

A11y

Label specialty use

When Ƶ appears in Berber or linguistic examples, label the language or purpose so readers know it is not everyday Z.

Browser Support

Uppercase Z stroke (U+01B5) and its entity forms (&#x1B5;, &#437;, CSS \\01B5) are supported in all mainstream browsers. Latin Extended-B glyphs are available in modern system fonts.

✓ Universal support

Uppercase Z Stroke (&#x01B5;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

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+01B5 Full support

Bottom line: Prefer &#x1B5; or &#437; in HTML. Use \\01B5 only inside CSS content. Do not confuse with plain Z or Ȥ (hook).

Key Takeaways

  • Unicode: uppercase Z stroke is U+01B5 (decimal 437) — glyph Ƶ.
  • HTML: use &#x1B5; or &#437; — no named entity in HTML5.
  • CSS: use \01B5 inside content for generated text.
  • Meaning: Ƶ is Z with stroke — not plain Z, not Ȥ (hook), not ƶ (lowercase).

One line: U+01B5 → &#x1B5; / &#437; / CSS \01B5.

Frequently Asked Questions

Use &#x1B5; (hex), &#437; (decimal), type Ƶ directly in UTF-8, or the CSS escape \01B5 in content. There is no named HTML entity for U+01B5.
U+01B5 (LATIN CAPITAL LETTER Z WITH STROKE). Hex 1B5, decimal 437. It belongs to Latin Extended-B (U+0180–U+024F).
No. HTML5 does not define a named entity for this character. Use numeric forms &#437; or &#x1B5;.
No. Ƶ is Z with a stroke (U+01B5). Plain Z is U+005A. Ȥ is Z with hook (U+0224) — a different diacritic.
Use it for Berber orthography, linguistics, or specialized text that needs capital Ƶ as one precomposed letter — not as a substitute for plain Z or Ȥ.
HTML entities (&#437; or &#x1B5;) go in markup. The CSS escape \01B5 goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Uppercase Z stroke (Ƶ) is Unicode U+01B5 (decimal 437) — LATIN CAPITAL LETTER Z WITH STROKE in Latin Extended-B. HTML5 has no named entity — use &#x1B5; or &#437;. Lowercase is U+01B6 (ƶ). Used in Berber orthography, linguistics, and specialized typography. Do not confuse with plain Z (U+005A) or Z hook Ȥ (U+0224).

Next: Upsilon

Learn the HTML entity for Latin capital letter upsilon (U+01B1).

Continue 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