Interrobang

Shortcodes

Copy useful codes for interrobang symbol ‽ to use in websites, apps, blogs, and docs.

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

Customize Interrobang

Customize ‽, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Interrobang Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>‽</span>
HTML Code:
<span>&#8253;</span>
HEX Code:
<span>&#x203D;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.interrobang').textContent = '‽';
copied