| Symboolnaam | Double Acute Accent |
| Unicode-versie | 1.1 |
| Unicode | U+02DD |
| Unicode-blok | |
| Algemene categorie | Modifier Symbol (Sk) |
| CSS-code | \02DD |
| Hexadecimale code | 0x02DD |
| HTML-code | ˝ |
| LaTeX | \text{DOUBLEACUTEACCENT} |
| Symbool | ˝ |
| URL-codering (UTF-8 procent) | %CB%9D |
| Uitgesproken naam / schermlezer | Double Acute Accent |
| UTF-8 | CB 9D |
| UTF-16 | 02DD |
| UTF-32 | 000002DD |
1\documentclass{article}2\usepackage{pifont}3\text{DOUBLEACUTEACCENT}4\end{document}Je kunt het double acute accent-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 733 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "double acute accent", or use Unicode Hex Input with 02DD.
Ctrl + Shift + U, type 02dd, 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.double-acute-accent::before { content: "\02DD"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>˝</span>De weergave van het Double Acute Accent-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u02DD' or String.fromCodePoint(733) |
| Python | '\N{DOUBLE ACUTE ACCENT}' or chr(733) |
| Rust | '\u{02DD}' |
| C / C++ | UTF-8 source or wchar_t with U+02DD |
| Go | string(rune(0x02DD)) |
| Ruby | "\u{02DD}" |