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