Question Exclamation Mark

Shortcodes

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

Unicode
U+2048
HTML Code
⁈
HEX Code
⁈
CSS Code
\2048
JS/JSON
\u2048
Unix/C/PHP/JAVA
0x2048
URL-encode
%E2%81%88
copied

Customize Question Exclamation Mark Symbol

Customize ⁈ symbol as you like and download Question Exclamation 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 Question Exclamation Mark symbol in HTML, CSS, and JS?

Insert ⁈ Question Exclamation Mark using HTML

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

Add Question Exclamation Mark symbol with CSS

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

Question Exclamation Mark JavaScript Code

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