Back
Asciify Logo
Asciify

Latin Small Letter Z

Closing the Latin alphabet as its twenty-sixth and final letter, lowercase 'z' appears in roughly 0.07 % of characters in typical English corpora — making it one of the least frequently used letters alongside 'q' and 'x'. In American English it is called 'zee', while British, Canadian, Australian, and most other English-speaking traditions use 'zed', a divergence traceable to competing 17th-century pronunciations. In ASCII it occupies code point 122 (0x7A), positioned 32 above its uppercase counterpart 'Z' at 90 (0x5A), maintaining the single-bit case offset (bit 5) shared by all ASCII A–Z / a–z pairs.

Latin Letter

Technical Details

Code Example

</>
// Check if character is lowercase
bool isLowerAlpha(char c) {
return c >= 'a' && c <= 'z'; // 97-122
}
// 3D coordinates
struct Point3D { int x, y, z; };

Common Usage

  • Printf length modifier: In C99 and later standards, 'z' serves as a length modifier for the size_t and ssize_t types — %zu formats an unsigned size_t, %zd a signed ssize_t. This modifier ensures portable formatting of sizes and counts on both 32-bit and 64-bit platforms, where size_t may be 4 or 8 bytes respectively. Prior to C99, programmers often resorted to casting or non-portable alternatives.

  • Regex end-of-string anchor: In Perl, PCRE, and Ruby, \z matches the absolute end of the string, unaffected by multiline mode — distinct from $ which may match before a final newline or at each line end depending on flags. The related \Z (uppercase) matches either at the end of the string or before a trailing newline. These anchors are engine-specific and not available in all regex flavors.

  • Phonetic variation across languages: English 'z' represents the voiced alveolar sibilant /z/ (zoo, maze), but the same letter yields quite different sounds elsewhere — German uses it for the voiceless affricate /ts/ (Zeit, Zug), Italian for both /ts/ and /dz/ depending on the word, and Castilian Spanish maps it to the voiceless dental fricative /θ/ (zapato). This makes 'z' one of the more phonetically variable consonants across European languages.

  • Diacritical variants: Polish distinguishes two modified forms — ź (acute) for the palatalized fricative /ʑ/ and ż (dot above) for the retroflex /ʐ/. Czech, Slovak, Slovenian, and the Baltic languages use ž (caron) for /ʒ/, treating it as a distinct letter in their alphabets. In transliteration of Semitic languages, ẓ (dot below) represents emphatic consonants in Arabic and Hebrew. This gives 'z' a moderately rich diacritical family despite its rarity in English text.

  • Printf length modifier: In C99 and later standards, 'z' serves as a length modifier for the size_t and ssize_t types — %zu formats an unsigned size_t, %zd a signed ssize_t. This modifier ensures portable formatting of sizes and counts on both 32-bit and 64-bit platforms, where size_t may be 4 or 8 bytes respectively. Prior to C99, programmers often resorted to casting or non-portable alternatives.

  • Regex end-of-string anchor: In Perl, PCRE, and Ruby, \z matches the absolute end of the string, unaffected by multiline mode — distinct from $ which may match before a final newline or at each line end depending on flags. The related \Z (uppercase) matches either at the end of the string or before a trailing newline. These anchors are engine-specific and not available in all regex flavors.

  • Phonetic variation across languages: English 'z' represents the voiced alveolar sibilant /z/ (zoo, maze), but the same letter yields quite different sounds elsewhere — German uses it for the voiceless affricate /ts/ (Zeit, Zug), Italian for both /ts/ and /dz/ depending on the word, and Castilian Spanish maps it to the voiceless dental fricative /θ/ (zapato). This makes 'z' one of the more phonetically variable consonants across European languages.

  • Diacritical variants: Polish distinguishes two modified forms — ź (acute) for the palatalized fricative /ʑ/ and ż (dot above) for the retroflex /ʐ/. Czech, Slovak, Slovenian, and the Baltic languages use ž (caron) for /ʒ/, treating it as a distinct letter in their alphabets. In transliteration of Semitic languages, ẓ (dot below) represents emphatic consonants in Arabic and Hebrew. This gives 'z' a moderately rich diacritical family despite its rarity in English text.

@workani&@alexluthor
Privacy & legal

Privacy

No accounts, no ads, no tracking cookies, and no cross-site tracking. The only analytics we keep are faceless — anonymous, aggregated counts of pages and searches, never tied to you. We store no IP addresses, set no tracking cookies, and build no profiles. Cloudflare hosts the site and handles requests for delivery and security.

Full privacy policy·Extension privacy·legal@asciify.dev

Attributions & licenses

Twemoji
© Twitter, Inc and other contributors · CC-BY 4.0
Noto Color Emoji
© Google · Apache 2.0
Fluent UI Emoji
© Microsoft · MIT
OpenMoji
© HfG Schwäbisch Gmünd · CC-BY-SA 4.0
Toss Face
© Viva Republica (Toss) · SIL OFL 1.1
JoyPixels
© JoyPixels Inc. · Free Limited Use License
SerenityOS Emoji
© The SerenityOS Developers · BSD-2-Clause
EmojiTwo
© EmojiTwo contributors · CC-BY 4.0
Apple Color Emoji
© Apple, Inc.
Facebook Emoji
© Meta Platforms, Inc.

Apple and Facebook emoji styles are proprietary and shown here solely for reference and comparison — a common-sense application of nominative-use / fair-use principles. asciify is not affiliated with, endorsed by, or sponsored by Apple, Inc., Meta Platforms, Inc., or any other rights holder listed above. If a rights holder requests removal of their emoji style from this site, it will be removed.

All other vendor emoji are reproduced for reference and comparison under their respective open licenses listed above.

Character names and code points from the Unicode® Standard. Unicode® and the Unicode Logo are registered trademarks of Unicode, Inc.

Privacy
© asciify.dev 2025-2026