| Nom du symbole | Full Stop |
| Version Unicode | 1.1 |
| Unicode | U+002E |
| Bloc Unicode | |
| Catégorie générale | Other Punctuation (Po) |
| Code CSS | \002E |
| Code hexadécimal | 0x002E |
| Code HTML | . |
| LaTeX | . |
| Symbole | . |
| Encodage URL (pourcent UTF-8) | %2E |
| Nom oral / lecteur d’écran | Full Stop |
| UTF-8 | 2E |
| UTF-16 | 002E |
| UTF-32 | 0000002E |
1\documentclass{article}2\usepackage{pifont}3.4\end{document}Vous pouvez saisir le symbole full stop sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Full Stop dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |