| Symbol Name | Full Stop |
| Unicode Version | 1.1 |
| Unicode | U+002E |
| Unicode block | |
| General category | Other Punctuation (Po) |
| CSS Code | \002E |
| Hex Code | 0x002E |
| HTML Code | . |
| LaTeX | . |
| Symbol | . |
| URL encode (UTF-8 percent) | %2E |
| Spoken / screen reader name | Full Stop |
| UTF-8 | 2E |
| UTF-16 | 002E |
| UTF-32 | 0000002E |
1\documentclass{article}2\usepackage{pifont}3.4\end{document}You can type the full stop symbol on most modern devices with the help of following methods:
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 symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |