| Nom du symbole | Latin Capital Letter Z |
| Version Unicode | 1.1 |
| Unicode | U+005A |
| Bloc Unicode | |
| Catégorie générale | Uppercase Letter (Lu) |
| Code CSS | \005A |
| Code hexadécimal | 0x005A |
| Code HTML | Z |
| LaTeX | Z |
| Symbole | Z |
| Encodage URL (pourcent UTF-8) | %5A |
| Nom oral / lecteur d’écran | Latin Capital Letter Z |
| UTF-8 | 5A |
| UTF-16 | 005A |
| UTF-32 | 0000005A |
1\documentclass{article}2\usepackage{pifont}3Z4\end{document}Vous pouvez saisir le symbole latin capital letter z sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 90 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin capital letter z", or use Unicode Hex Input with 005A.
Ctrl + Shift + U, type 005a, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Latin keyboard.
Paste from this page or use a keyboard with Latin letter support.
1span.capital-z::before { content: "\005A"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>Z</span>La représentation du symbole Latin Capital Letter Z dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u005A' or String.fromCodePoint(90) |
| Python | '\N{LATIN CAPITAL LETTER Z}' or chr(90) |
| Rust | '\u{005A}' |
| C / C++ | UTF-8 source or wchar_t with U+005A |
| Go | string(rune(0x005A)) |
| Ruby | "\u{005A}" |