| 記号名 | Interrobang |
| Unicodeバージョン | 1.1 |
| Unicode | U+203D |
| Unicodeブロック | |
| 一般カテゴリ | Other Punctuation (Po) |
| CSSコード | \203D |
| 16進コード | 0x203D |
| HTMLコード | ‽ |
| LaTeX | \interrobang |
| 記号 | ‽ |
| URLエンコード(UTF-8パーセント) | %E2%80%BD |
| 読み上げ名 / スクリーンリーダー | Interrobang |
| UTF-8 | E2 80 BD |
| UTF-16 | 203D |
| UTF-32 | 0000203D |
1\documentclass{article}2\usepackage{pifont}3\interrobang 4\end{document}以下の方法でほとんどの最新デバイスでinterrobang記号を入力できます:
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記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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}" |