Reversed Question Mark

Shortcodes

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

Unicode
U+2E2E
HTML Code
⸮
HEX Code
⸮
CSS Code
\2E2E
JS/JSON
\u2E2E
Unix/C/PHP/JAVA
0x2E2E
URL-encode
%E2%B8%AE
copied

Customize Reversed Question Mark Symbol

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

Insert ⸮ Reversed Question Mark using HTML

1. Copy-paste Reversed Question Mark directly:
<span>⸮</span>
2. HTML Decimal Code:
<span>&#11822;</span>
3. Hexadecimal Code:
<span>&#x2E2E;</span>
Preview:

Add Reversed Question Mark symbol with CSS

.reversed-question-mark::before {
    content: '\\2E2E';
}
Preview: Reversed Question Mark

Reversed Question Mark JavaScript Code

1. Direct Symbol:
document.querySelector('.reversed-question-mark').textContent = '⸮';
2. Unicode Escape for ⸮:
document.querySelector('.reversed-question-mark').textContent = '\u2E2E';
Preview: