| Nome del simbolo | Full Stop |
| Versione Unicode | 1.1 |
| Unicode | U+002E |
| Blocco Unicode | |
| Categoria generale | Other Punctuation (Po) |
| Codice CSS | \002E |
| Codice esadecimale | 0x002E |
| Codice HTML | . |
| LaTeX | . |
| Simbolo | . |
| Codifica URL (percentuale UTF-8) | %2E |
| Nome parlato / screen reader | Full Stop |
| UTF-8 | 2E |
| UTF-16 | 002E |
| UTF-32 | 0000002E |
1\documentclass{article}2\usepackage{pifont}3.4\end{document}Puoi digitare il simbolo full stop sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Full Stop nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |