| Nome del simbolo | Double Prime |
| Versione Unicode | 1.1 |
| Unicode | U+2033 |
| Blocco Unicode | |
| Categoria generale | Other Punctuation (Po) |
| Codice CSS | \2033 |
| Codice esadecimale | 0x2033 |
| Codice HTML | ″ |
| LaTeX | '' |
| Simbolo | ″ |
| Codifica URL (percentuale UTF-8) | %E2%80%B3 |
| Nome parlato / screen reader | Double Prime |
| UTF-8 | E2 80 B3 |
| UTF-16 | 2033 |
| UTF-32 | 00002033 |
1\documentclass{article}2\usepackage{pifont}3''4\end{document}Puoi digitare il simbolo double prime sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 8243 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "double prime", or use Unicode Hex Input.
Ctrl + Shift + U, type 2033, then Enter (layout-dependent).
Paste from this page or use a math keyboard.
Paste from this page or use extended symbol panels.
1span.double-prime::before { content: "\2033"; }1<span>″</span>La rappresentazione del simbolo Double Prime nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u2033' or String.fromCodePoint(0x2033) |
| Python | '\N{DOUBLE PRIME}' or chr(8243) |
| Rust | '\u{2033}' |
| C / C++ | UTF-8 source or wchar_t with U+2033 |
| Go | string(rune(0x2033)) |
| Ruby | "\u2033" |