HTML Entity for Uppercase Z Hook (Ȥ)

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

What You'll Learn

How to display the uppercase Z with hook (Ȥ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is officially named LATIN CAPITAL LETTER Z WITH HOOK—a specialized Latin letter with a hook diacritic used in some African orthographies and linguistic transcription. It is U+0224 in the Latin Extended-B block and is the uppercase pair of lowercase ȥ (U+0225).

Render it with Ȥ, Ȥ, or CSS escape \0224. There is no named HTML entity for this character. Do not confuse Ȥ (Z hook) with plain Z (U+005A), (double-struck Z), or accented Z letters like Ż (Z dot above).

⚡ Quick Reference — Uppercase Z Hook Entity

Unicode U+0224

Latin Extended-B

Hex Code Ȥ

Hexadecimal reference

HTML Code Ȥ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0224
Hex code       Ȥ
HTML code      Ȥ
Named entity   (none)
CSS code       \0224
Meaning        Latin capital letter Z with hook
Also called    Z hook
Related        U+0225 = ȥ (lowercase z hook)
               plain Z (U+005A) = Latin letter
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the uppercase Z hook (Ȥ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0224";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0224;</p>
<p>Symbol (decimal): &#548;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase Z hook (Ȥ) is supported in modern browsers when the font includes Latin Extended-B glyphs:

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

👀 Live Preview

See the uppercase Z hook (Ȥ) in linguistic and transcription contexts:

Large glyphȤ
Unicode nameLatin capital letter Z with hook
Lowercaseȥ (U+0225) — LATIN SMALL LETTER Z WITH HOOK
Latin letterPlain Z (U+005A) is the everyday Latin letter, not Z hook
Not the same asplain Z (U+005A)  |  (double-struck)  |  Ż (Z dot above)
Numeric refs&#x0224; &#548; \0224

🧠 How It Works

1

Hexadecimal Code

&#x0224; uses the Unicode hexadecimal value 0224 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce the glyph: Ȥ. Unicode U+0224 sits in Latin Extended-B. Lowercase equivalent: U+0225 (ȥ). Do not confuse with plain Z (U+005A) or (double-struck Z). Use fonts with extended Latin support for reliable rendering.

Use Cases

The uppercase Z hook (Ȥ) is commonly used in:

🌍 African orthographies

Capital form of the z-with-hook letter in some African language writing systems and transliteration schemes.

📝 Linguistics & transcription

Phonetic and orthographic transcription in academic papers, dictionaries, and linguistic databases when uppercase is required.

🔤 Education

Language learning resources and character charts teaching extended Latin letters and their uppercase forms.

📄 Academic content

Character reference pages and Unicode documentation requiring accurate uppercase Z hook representation.

🌐 Digital humanities

Encoded texts and multilingual archives that include Latin Extended-B characters in HTML.

🎨 Typography

Font specimens and design references showcasing extended Latin letters with hook diacritics.

⚙ Programmatic HTML

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

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type Ȥ directly in UTF-8 source
  • Use numeric references (&#x0224; or &#548;) when escaping is required
  • Use \0224 in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support Latin Extended-B characters
  • Distinguish Ȥ (Z hook) from plain Z and other Z variants

Don’t

  • Substitute plain Z when Ȥ is required for accurate transcription
  • Confuse Ȥ (Z hook, U+0224) with ℤ (double-struck Z, integers) or Ż (Z dot above)
  • Use the old incorrect CSS escape \00224—the correct value is \0224
  • Expect a named HTML entity—none exists for Ȥ
  • Put CSS escape \0224 in HTML text nodes

Key Takeaways

1

Type Ȥ directly, or use hex/decimal references

&#x0224; &#548;
2

For CSS stylesheets, use the escape in the content property

\0224
3

Unicode U+0224 — LATIN CAPITAL LETTER Z WITH HOOK

4

Latin Extended-B letter; lowercase is ȥ (U+0225)

❓ Frequently Asked Questions

Use &#x0224; (hex), &#548; (decimal), or \0224 in CSS content. There is no named HTML entity. In UTF-8 you can also type Ȥ directly.
U+0224 (LATIN CAPITAL LETTER Z WITH HOOK). Latin Extended-B block. Hex 0224, decimal 548. Used in African orthographies and linguistic transcription. Lowercase form is U+0225 (ȥ).
When displaying African language texts in uppercase, linguistic transcriptions, academic content, or character references requiring the capital Z-with-hook letter.
Ȥ (U+0224) is Z with hook—a specialized Latin letter used in some orthographies and linguistics. Plain Z (U+005A) is the standard uppercase letter in everyday text. They are different characters with different Unicode values.
No. Use &#548; or &#x0224; in HTML, or \0224 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