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