Exclamation Question Mark

Shortcodes

Copy and paste codes for Exclamation Question Mark symbol ⁉ to use in your websites, apps, blogs, and more.

Unicode
U+2049
HTML Code
⁉
HEX Code
⁉
CSS Code
\2049
JS/JSON
\u2049
Unix/C/PHP/JAVA
0x2049
URL-encode
%E2%81%89
copied

Customize Exclamation Question Mark Symbol

Customize ⁉ symbol as you like and download Exclamation Question Mark as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Exclamation Question Mark symbol in HTML, CSS, and JS?

Insert ⁉ Exclamation Question Mark using HTML

1. Copy-paste Exclamation Question Mark directly:
<span>⁉</span>
2. HTML Decimal Code:
<span>&#8265;</span>
3. Hexadecimal Code:
<span>&#x2049;</span>
Preview:

Add Exclamation Question Mark symbol with CSS

.exclamation-question-mark::before {
    content: '\\2049';
}
Preview: Exclamation Question Mark

Exclamation Question Mark JavaScript Code

1. Direct Symbol:
document.querySelector('.exclamation-question-mark').textContent = '⁉';
2. Unicode Escape for ⁉:
document.querySelector('.exclamation-question-mark').textContent = '\u2049';
Preview: