| 記号名 | Question Exclamation Mark |
| Unicodeバージョン | 3.0 |
| Unicode | U+2048 |
| Unicodeブロック | |
| 一般カテゴリ | Other Punctuation (Po) |
| CSSコード | \2048 |
| 16進コード | 0x2048 |
| HTMLコード | ⁈ |
| LaTeX | ?! |
| 記号 | ⁈ |
| URLエンコード(UTF-8パーセント) | %E2%81%88 |
| 読み上げ名 / スクリーンリーダー | Question Exclamation Mark |
| UTF-8 | E2 81 88 |
| UTF-16 | 2048 |
| UTF-32 | 00002048 |
1\documentclass{article}2\usepackage{pifont}3?!4\end{document}以下の方法でほとんどの最新デバイスでquestion exclamation mark記号を入力できます:
Alt + 8264 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "question exclamation mark", or use Unicode Hex Input with 2048.
Ctrl + Shift + U, type 2048, 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.question-exclamation-mark::before { content: "\2048"; }1<span>⁈</span>各プログラミング言語におけるQuestion Exclamation Mark記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u2048' or String.fromCodePoint(8264) |
| Python | '\N{QUESTION EXCLAMATION MARK}' or chr(8264) |
| Rust | '\u{2048}' |
| C / C++ | UTF-8 source or wchar_t with U+2048 |
| Go | string(rune(0x2048)) |
| Ruby | "\u{2048}" |