| Nome del simbolo | Interrobang |
| Versione Unicode | 1.1 |
| Unicode | U+203D |
| Blocco Unicode | |
| Categoria generale | Other Punctuation (Po) |
| Codice CSS | \203D |
| Codice esadecimale | 0x203D |
| Codice HTML | ‽ |
| LaTeX | \interrobang |
| Simbolo | ‽ |
| Codifica URL (percentuale UTF-8) | %E2%80%BD |
| Nome parlato / screen reader | Interrobang |
| UTF-8 | E2 80 BD |
| UTF-16 | 203D |
| UTF-32 | 0000203D |
1\documentclass{article}2\usepackage{pifont}3\interrobang 4\end{document}Puoi digitare il simbolo interrobang sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 8253 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "interrobang", or use Unicode Hex Input with 203D.
Ctrl + Shift + U, type 203d, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with punctuation support.
1span.interrobang::before { content: "\203D"; }1<span>‽</span>La rappresentazione del simbolo Interrobang nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u203D' or String.fromCodePoint(8253) |
| Python | '\N{INTERROBANG}' or chr(8253) |
| Rust | '\u{203D}' |
| C / C++ | UTF-8 source or wchar_t with U+203D |
| Go | string(rune(0x203D)) |
| Ruby | "\u{203D}" |