| 記号名 | Colon |
| Unicodeバージョン | 1.1 |
| Unicode | U+003A |
| Unicodeブロック | |
| 一般カテゴリ | Other Punctuation (Po) |
| CSSコード | \003A |
| 16進コード | 0x003A |
| HTMLコード | : |
| LaTeX | : |
| 記号 | : |
| URLエンコード(UTF-8パーセント) | %3A |
| 読み上げ名 / スクリーンリーダー | Colon |
| UTF-8 | 3A |
| UTF-16 | 003A |
| UTF-32 | 0000003A |
1\documentclass{article}2\usepackage{pifont}3:4\end{document}以下の方法でほとんどの最新デバイスでcolon記号を入力できます:
Alt + 58 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "colon", or use Unicode Hex Input with 003A.
Ctrl + Shift + U, type 003a, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with punctuation support.
1span.colon::before { content: "\003A"; }1<span>:</span>各プログラミング言語におけるColon記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u003A' or String.fromCodePoint(58) |
| Python | '\N{COLON}' or chr(58) |
| Rust | '\u{003A}' |
| C / C++ | UTF-8 source or wchar_t with U+003A |
| Go | string(rune(0x003A)) |
| Ruby | "\u{003A}" |