Fullwidth Comma vs Fullwidth Digit Zero
VS
Property Comparison
| Property | , FF0C | 0 FF10 |
|---|---|---|
| Name | Fullwidth Comma | Fullwidth Digit Zero |
| Category | Punctuation | Punctuation |
| Block | Halfwidth and Fullwidth Forms | Halfwidth and Fullwidth Forms |
| Script | Zyyy | Zyyy |
| General Category | Other Punctuation (Po) | Decimal Number (Nd) |
| Bidirectional | CS | EN |
Encoding Comparison
| Format | FF0C | FF10 |
|---|---|---|
| Unicode | U+FF0C | U+FF10 |
| HTML Decimal | , | 0 |
| HTML Hex | , | 0 |
| CSS | \FF0C | \FF10 |
| JavaScript | \u{FF0C} | \u{FF10} |
| Python | \uff0c | \uff10 |
| UTF-8 | ef bc 8c | ef bc 90 |
How to Distinguish
Both Fullwidth Comma and Fullwidth Digit Zero belong to the Punctuation category and the Halfwidth and Fullwidth Forms block. Compare their codepoints and visual rendering to distinguish them.
Tip: Paste the character into a hex editor or use
charCodeAt()
in JavaScript to check the actual codepoint.