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