| Symboolnaam | Full Stop |
| Unicode-versie | 1.1 |
| Unicode | U+002E |
| Unicode-blok | |
| Algemene categorie | Other Punctuation (Po) |
| CSS-code | \002E |
| Hexadecimale code | 0x002E |
| HTML-code | . |
| LaTeX | . |
| Symbool | . |
| URL-codering (UTF-8 procent) | %2E |
| Uitgesproken naam / schermlezer | Full Stop |
| UTF-8 | 2E |
| UTF-16 | 002E |
| UTF-32 | 0000002E |
1\documentclass{article}2\usepackage{pifont}3.4\end{document}Je kunt het full stop-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Full Stop-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |