Fullwidth Comma

Shortcodes

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

Unicode
U+FF0C
HTML Code
,
HEX Code
,
CSS Code
\FF0C
JS/JSON
\uFF0C
Unix/C/PHP/JAVA
0xFF0C
URL-encode
%EF%BC%8C
copied

Customize Fullwidth Comma Symbol

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

Insert , Fullwidth Comma using HTML

1. Copy-paste Fullwidth Comma directly:
<span>,</span>
2. HTML Decimal Code:
<span>&#65292;</span>
3. Hexadecimal Code:
<span>&#xFF0C;</span>
Preview:

Add Fullwidth Comma symbol with CSS

.fullwidth-comma::before {
    content: '\\FF0C';
}
Preview: Fullwidth Comma

Fullwidth Comma JavaScript Code

1. Direct Symbol:
document.querySelector('.fullwidth-comma').textContent = ',';
2. Unicode Escape for ,:
document.querySelector('.fullwidth-comma').textContent = '\uFF0C';
Preview: