Interrobang

Shortcodes

Copy and paste codes for Interrobang symbol ‽ to use in your websites, apps, blogs, and more.

Unicode
U+203D
HTML Code
‽
HEX Code
‽
CSS Code
\203D
JS/JSON
\u203D
Unix/C/PHP/JAVA
0x203D
URL-encode
%E2%80%BD
copied

Customize Interrobang Symbol

Customize ‽ symbol as you like and download Interrobang 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 Interrobang symbol in HTML, CSS, and JS?

Insert ‽ Interrobang using HTML

1. Copy-paste Interrobang directly:
<span>‽</span>
2. HTML Decimal Code:
<span>&#8253;</span>
3. Hexadecimal Code:
<span>&#x203D;</span>
Preview:

Add Interrobang symbol with CSS

.interrobang::before {
    content: '\\203D';
}
Preview: Interrobang

Interrobang JavaScript Code

1. Direct Symbol:
document.querySelector('.interrobang').textContent = '‽';
2. Unicode Escape for ‽:
document.querySelector('.interrobang').textContent = '\u203D';
Preview: