| Nome del simbolo | Double Acute Accent |
| Versione Unicode | 1.1 |
| Unicode | U+02DD |
| Blocco Unicode | |
| Categoria generale | Modifier Symbol (Sk) |
| Codice CSS | \02DD |
| Codice esadecimale | 0x02DD |
| Codice HTML | ˝ |
| LaTeX | \text{DOUBLEACUTEACCENT} |
| Simbolo | ˝ |
| Codifica URL (percentuale UTF-8) | %CB%9D |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo double acute accent sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Double Acute Accent nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |