Small Question Mark

Shortcodes

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

Unicode
U+FE56
HTML Code
﹖
HEX Code
﹖
CSS Code
\FE56
JS/JSON
\uFE56
Unix/C/PHP/JAVA
0xFE56
URL-encode
%EF%B9%96
copied

Customize Small Question Mark Symbol

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

Insert ﹖ Small Question Mark using HTML

1. Copy-paste Small Question Mark directly:
<span>﹖</span>
2. HTML Decimal Code:
<span>&#65110;</span>
3. Hexadecimal Code:
<span>&#xFE56;</span>
Preview:

Add Small Question Mark symbol with CSS

.small-question-mark::before {
    content: '\\FE56';
}
Preview: Small Question Mark

Small Question Mark JavaScript Code

1. Direct Symbol:
document.querySelector('.small-question-mark').textContent = '﹖';
2. Unicode Escape for ﹖:
document.querySelector('.small-question-mark').textContent = '\uFE56';
Preview: