| Symboolnaam | Small Tilde |
| Unicode-versie | 1.1 |
| Unicode | U+02DC |
| Unicode-blok | |
| Algemene categorie | Modifier Symbol (Sk) |
| CSS-code | \02DC |
| Hexadecimale code | 0x02DC |
| HTML-code | ˜ |
| LaTeX | \text{SMALLTILDE} |
| Symbool | ˜ |
| URL-codering (UTF-8 procent) | %CB%9C |
| Uitgesproken naam / schermlezer | Small Tilde |
| UTF-8 | CB 9C |
| UTF-16 | 02DC |
| UTF-32 | 000002DC |
1\documentclass{article}2\usepackage{pifont}3\text{SMALLTILDE}4\end{document}Je kunt het small tilde-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 732 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "small tilde", or use Unicode Hex Input with 02DC.
Ctrl + Shift + U, type 02dc, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Latin keyboard.
Paste from this page or use a keyboard with Latin letter support.
1span.small-tilde::before { content: "\02DC"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>˜</span>De weergave van het Small Tilde-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u02DC' or String.fromCodePoint(732) |
| Python | '\N{SMALL TILDE}' or chr(732) |
| Rust | '\u{02DC}' |
| C / C++ | UTF-8 source or wchar_t with U+02DC |
| Go | string(rune(0x02DC)) |
| Ruby | "\u{02DC}" |