| Symboolnaam | Semicolon |
| Unicode-versie | 1.1 |
| Unicode | U+003B |
| Unicode-blok | |
| Algemene categorie | Other Punctuation (Po) |
| CSS-code | \003B |
| Hexadecimale code | 0x003B |
| HTML-code | ; |
| LaTeX | ; |
| Symbool | ; |
| URL-codering (UTF-8 procent) | %3B |
| Uitgesproken naam / schermlezer | Semicolon |
| UTF-8 | 3B |
| UTF-16 | 003B |
| UTF-32 | 0000003B |
1\documentclass{article}2\usepackage{pifont}3;4\end{document}Je kunt het semicolon-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 59 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "semicolon", or use Unicode Hex Input with 003B.
Ctrl + Shift + U, type 003b, 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.semicolon::before { content: "\003B"; }1<span>;</span>De weergave van het Semicolon-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u003B' or String.fromCodePoint(59) |
| Python | '\N{SEMICOLON}' or chr(59) |
| Rust | '\u{003B}' |
| C / C++ | UTF-8 source or wchar_t with U+003B |
| Go | string(rune(0x003B)) |
| Ruby | "\u{003B}" |