| Symboolnaam | Greek Small Letter Delta |
| Unicode-versie | 1.1 |
| Unicode | U+03B4 |
| Unicode-blok | |
| Algemene categorie | Lowercase Letter (Ll) |
| CSS-code | \03B4 |
| Hexadecimale code | 0x03B4 |
| HTML-code | δ |
| LaTeX | \delta |
| Symbool | δ |
| URL-codering (UTF-8 procent) | %CE%B4 |
| Uitgesproken naam / schermlezer | Greek Small Letter Delta |
| UTF-8 | CE B4 |
| UTF-16 | 03B4 |
| UTF-32 | 000003B4 |
1\documentclass{article}2\usepackage{pifont}3\delta4\end{document}Je kunt het greek small letter delta-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 948 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek small letter delta", or use Unicode Hex Input with 03B4.
Ctrl + Shift + U, type 03b4, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Greek keyboard.
Paste from this page or use a keyboard with Greek letter support.
1span.delta::before { content: "\03B4"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>δ</span>De weergave van het Greek Small Letter Delta-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u03B4' or String.fromCodePoint(948) |
| Python | '\N{GREEK SMALL LETTER DELTA}' or chr(948) |
| Rust | '\u{03B4}' |
| C / C++ | UTF-8 source or wchar_t with U+03B4 |
| Go | string(rune(0x03B4)) |
| Ruby | "\u{03B4}" |