| Symbolname | Double Acute Accent |
| Unicode-Version | 1.1 |
| Unicode | U+02DD |
| Unicode-Block | |
| Allgemeine Kategorie | Modifier Symbol (Sk) |
| CSS-Code | \02DD |
| Hexadezimalcode | 0x02DD |
| HTML-Code | ˝ |
| LaTeX | \text{DOUBLEACUTEACCENT} |
| Symbol | ˝ |
| URL-Kodierung (UTF-8-Prozent) | %CB%9D |
| Ansagename (Screenreader) | 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}Sie können das Symbol double acute accent auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
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>Die Darstellung des Symbols Double Acute Accent in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| 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}" |