HTML Entity for Question Exclamation Mark (⁈)

What You'll Learn
How to display the question exclamation mark (⁈) in HTML using hexadecimal, decimal, and CSS escape methods. This is a single Unicode character with a question mark stacked above an exclamation mark—not two separate punctuation marks.
It is U+2048 (QUESTION EXCLAMATION MARK) in the General Punctuation block (U+2000–U+206F). Use ⁈, ⁈, or CSS \2048. There is no named HTML entity. Do not confuse ⁈ with the interrobang (‽), exclamation question mark (⁉), or inverted question mark (¿).
⚡ Quick Reference — Question Exclamation Mark
U+2048General Punctuation
⁈Hexadecimal reference
⁈Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2048
Hex code ⁈
HTML code ⁈
Named entity (none)
CSS code \2048
Meaning Question mark above exclamation mark
Related U+2049 = Exclamation question mark (⁉)
U+203D = Interrobang (‽)
U+003F = Question mark (?)
Block General Punctuation (U+2000–U+206F)Complete HTML Example
A simple example showing ⁈ using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\2048";
}
</style>
</head>
<body>
<p>Hex: ⁈</p>
<p>Decimal: ⁈</p>
<p>CSS: <span id="point"></span></p>
</body>
</html>🌐 Browser Support
The question exclamation mark is widely supported when fonts include General Punctuation (U+2000–U+206F):
👀 Live Preview
See ⁈ rendered live in different contexts:
🧠 How It Works
Hexadecimal Code
⁈ uses the Unicode hexadecimal value 2048 to display the question exclamation mark.
Decimal HTML Code
⁈ uses the decimal Unicode value 8264 to display the same character.
CSS Entity
\2048 is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce: ⁈. Unicode U+2048 in General Punctuation (U+2000–U+206F). No named HTML entity exists.
Use Cases
The question exclamation mark (⁈) commonly appears in:
Punctuation guides and editorial style references.
Character tables and General Punctuation references.
Headlines or captions with stacked question-exclamation tone.
Icon fonts and symbol pickers for punctuation sets.
Side-by-side demos of ⁈, ⁉, and ‽.
HTML entity references and encoding examples.
Pair ⁈ with descriptive text for screen readers.
💡 Best Practices
Do
- Use
⁈or⁈for the stacked glyph - Distinguish ⁈ from ⁉ (exclamation over question) and ‽ (interrobang)
- Pick one style (hex or decimal) per project
- Test font rendering across browsers and devices
- Provide plain-language context when used in body copy
Don’t
- Call ⁈ the interrobang—that is U+203D (‽)
- Confuse ⁈ with ¿ (inverted question mark)
- Use
?!when a single ⁈ glyph is intended - Assume a named entity exists—there is none
- Use CSS escape
\2048inside HTML text nodes
Key Takeaways
Two HTML numeric references render ⁈
⁈ ⁈For CSS stylesheets, use the escape in the content property
\2048Unicode U+2048 is QUESTION EXCLAMATION MARK in General Punctuation
No named HTML entity—use numeric codes or CSS escape only
Previous: Quarter Note (♩) Next: Question Mark (?)
❓ Frequently Asked Questions
⁈ (hex), ⁈ (decimal), or \2048 in CSS content. There is no named HTML entity for this symbol.U+2048 (QUESTION EXCLAMATION MARK). General Punctuation block. Hex 2048, decimal 8264.⁈ or ⁈, or the CSS escape \2048.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
