| 記号名 | Latin Capital Letter Z |
| Unicodeバージョン | 1.1 |
| Unicode | U+005A |
| Unicodeブロック | |
| 一般カテゴリ | Uppercase Letter (Lu) |
| CSSコード | \005A |
| 16進コード | 0x005A |
| HTMLコード | Z |
| LaTeX | Z |
| 記号 | Z |
| URLエンコード(UTF-8パーセント) | %5A |
| 読み上げ名 / スクリーンリーダー | Latin Capital Letter Z |
| UTF-8 | 5A |
| UTF-16 | 005A |
| UTF-32 | 0000005A |
1\documentclass{article}2\usepackage{pifont}3Z4\end{document}以下の方法でほとんどの最新デバイスでlatin capital letter z記号を入力できます:
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>各プログラミング言語におけるLatin Capital Letter Z記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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}" |