Fullwidth Question Mark

Shortcodes

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

Unicode
U+FF1F
HTML Code
?
HEX Code
?
CSS Code
\FF1F
JS/JSON
\uFF1F
Unix/C/PHP/JAVA
0xFF1F
URL-encode
%EF%BC%9F
copied

Customize Fullwidth Question Mark Symbol

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

Insert ? Fullwidth Question Mark using HTML

1. Copy-paste Fullwidth Question Mark directly:
<span>?</span>
2. HTML Decimal Code:
<span>&#65311;</span>
3. Hexadecimal Code:
<span>&#xFF1F;</span>
Preview:

Add Fullwidth Question Mark symbol with CSS

.fullwidth-question-mark::before {
    content: '\\FF1F';
}
Preview: Fullwidth Question Mark

Fullwidth Question Mark JavaScript Code

1. Direct Symbol:
document.querySelector('.fullwidth-question-mark').textContent = '?';
2. Unicode Escape for ?:
document.querySelector('.fullwidth-question-mark').textContent = '\uFF1F';
Preview: