Inverted Interrobang

Shortcodes

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

Unicode
U+2E18
HTML Code
⸘
HEX Code
⸘
CSS Code
\2E18
JS/JSON
\u2E18
Unix/C/PHP/JAVA
0x2E18
URL-encode
%E2%B8%98

Customize Inverted Interrobang

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

  

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

Insert in HTML

1. Direct symbol:
<span>⸘</span>
HTML Code:
<span>&#11800;</span>
HEX Code:
<span>&#x2E18;</span>

Add with CSS

.inverted-interrobang::before {
  content: '\\2E18';
}

Set it in JavaScript

document.querySelector('.inverted-interrobang').textContent = '⸘';
copied