| Symbol Name | Interrobang |
| Unicode Version | 1.1 |
| Unicode | U+203D |
| Unicode block | |
| General category | Other Punctuation (Po) |
| CSS Code | \203D |
| Hex Code | 0x203D |
| HTML Code | ‽ |
| LaTeX | \interrobang |
| Symbol | ‽ |
| URL encode (UTF-8 percent) | %E2%80%BD |
| Spoken / screen reader name | Interrobang |
| UTF-8 | E2 80 BD |
| UTF-16 | 203D |
| UTF-32 | 0000203D |
1\documentclass{article}2\usepackage{pifont}3\interrobang 4\end{document}You can type the interrobang symbol on most modern devices with the help of following methods:
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>Interrobang symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |