Fullwidth Quotation Mark

Shortcodes

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

Unicode
U+FF02
HTML Code
"
HEX Code
"
CSS Code
\FF02
JS/JSON
\uFF02
Unix/C/PHP/JAVA
0xFF02
URL-encode
%EF%BC%82
copied

Customize Fullwidth Quotation Mark Symbol

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

Insert " Fullwidth Quotation Mark using HTML

1. Copy-paste Fullwidth Quotation Mark directly:
<span>"</span>
2. HTML Decimal Code:
<span>&#65282;</span>
3. Hexadecimal Code:
<span>&#xFF02;</span>
Preview:

Add Fullwidth Quotation Mark symbol with CSS

.fullwidth-quotation-mark::before {
    content: '\\FF02';
}
Preview: Fullwidth Quotation Mark

Fullwidth Quotation Mark JavaScript Code

1. Direct Symbol:
document.querySelector('.fullwidth-quotation-mark').textContent = '"';
2. Unicode Escape for ":
document.querySelector('.fullwidth-quotation-mark').textContent = '\uFF02';
Preview: