Fullwidth Apostrophe vs Fullwidth Digit Three
VS
Property Comparison
| Property | ' FF07 | 3 FF13 |
|---|---|---|
| Name | Fullwidth Apostrophe | Fullwidth Digit Three |
| Category | Punctuation | Punctuation |
| Block | Halfwidth and Fullwidth Forms | Halfwidth and Fullwidth Forms |
| Script | Zyyy | Zyyy |
| General Category | Other Punctuation (Po) | Decimal Number (Nd) |
| Bidirectional | ON | EN |
Encoding Comparison
| Format | FF07 | FF13 |
|---|---|---|
| Unicode | U+FF07 | U+FF13 |
| HTML Decimal | ' | 3 |
| HTML Hex | ' | 3 |
| CSS | \FF07 | \FF13 |
| JavaScript | \u{FF07} | \u{FF13} |
| Python | \uff07 | \uff13 |
| UTF-8 | ef bc 87 | ef bc 93 |
How to Distinguish
Both Fullwidth Apostrophe and Fullwidth Digit Three 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.