HTML Entity for Double Question Mark (⁇)

What You'll Learn
How to display the Double Question Mark (⁇) in HTML using hexadecimal, decimal, and CSS entity methods. This character is U+2047 (DOUBLE QUESTION MARK) in the General Punctuation block (U+2000–U+206F)—a single glyph equivalent to two question marks (??), used for emphasis and in specialized notation such as chess blunder marks.
Render it with ⁇, ⁇, or CSS escape \2047. There is no named HTML entity for U+2047. For a single question mark use ? or ?; do not confuse ⁇ with the interrobang (‽, U+203D).
⚡ Quick Reference — Double Question Mark
U+2047General Punctuation block
⁇Hexadecimal reference
⁇Decimal reference
—Not available for U+2047
Name Value
──────────── ──────────
Unicode U+2047
Hex code ⁇
HTML code ⁇
Named entity —
CSS code \2047Complete HTML Example
This example demonstrates the Double Question Mark (⁇) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2047";
}
</style>
</head>
<body>
<p>Double Question Mark using Hexadecimal: ⁇</p>
<p>Double Question Mark using HTML Code: ⁇</p>
<p id="point">Double Question Mark using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+2047 is supported in modern browsers; General Punctuation glyphs render in virtually all fonts:
👀 Live Preview
See the Double Question Mark (⁇) in emphasis and notation contexts:
🧠 How It Works
Hexadecimal Code
⁇ uses the Unicode hexadecimal value 2047 to display the Double Question Mark. The x prefix indicates hexadecimal format.
Decimal HTML Code
⁇ uses the decimal Unicode value 8263 to display the same character.
CSS Entity
\2047 is used in CSS stylesheets, particularly in the content property of ::before or ::after.
Same visual result
All three methods produce: ⁇. Unicode U+2047 is in General Punctuation (U+2000–U+206F). No named HTML entity exists. For a single ? use the keyboard or ?; for interrobang (‽) use ‽.
Use Cases
The Double Question Mark (⁇) is commonly used in:
A single character for ?? instead of two separate question marks—consistent typography and line-breaking.
⁇ can denote a blunder in chess apps, articles, or PGN display (double question mark for a very bad move).
Fiction, scripts, or dialogue where strong uncertainty or repeated questioning uses one typographic glyph.
HTML entity lists and typography guides for General Punctuation (U+2000–U+206F).
Where one character is preferred over ?? for space, parsing, or encoding in data fields.
Pair ⁇ with surrounding context so screen readers convey intent; avoid relying on the glyph alone.
💡 Best Practices
Do
- Use
⁇or⁇for the ⁇ character - Use ⁇ when one glyph is needed for line-breaking or compatibility
- Use
\2047only inside CSScontent - Keep hex or decimal style consistent across the document
- Provide context for screen readers when ⁇ carries semantic meaning
Don’t
- Assume a named entity exists for U+2047—it does not
- Confuse ⁇ (double question) with ‽ (interrobang, U+203D)
- Put CSS escape
\2047in HTML text nodes - Force ⁇ where typing ?? is clearer for most readers
- Rely on ⁇ alone for critical meaning without accessible text
Key Takeaways
No named entity—use numeric references
⁇ ⁇For CSS stylesheets, use the escape in the content property
\2047Unicode U+2047 DOUBLE QUESTION MARK
Single glyph equivalent to ??; used for emphasis and chess blunder notation
Three methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
⁇ (hex), ⁇ (decimal), or \2047 in CSS content. There is no named HTML entity. All three methods render ⁇.U+2047 (DOUBLE QUESTION MARK). General Punctuation block. Hex 2047, decimal 8263. A compatibility character equivalent to ??, used for emphasis or specialized notation (e.g. chess).⁇ or ⁇) go in markup. The CSS escape \2047 is used in stylesheets, typically in the content property of pseudo-elements. Both render ⁇.⁇ or ⁇ in HTML, and \2047 in CSS. For a single question mark use ? or ?.Explore More HTML Entities!
Discover 1500+ HTML character references — punctuation, symbols, and more.
8 people found this page helpful
