Fullwidth Apostrophe vs Fullwidth Digit Eight
VS
Property Comparison
| Property | ' FF07 | 8 FF18 |
|---|---|---|
| Name | Fullwidth Apostrophe | Fullwidth Digit Eight |
| 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 | FF18 |
|---|---|---|
| Unicode | U+FF07 | U+FF18 |
| HTML Decimal | ' | 8 |
| HTML Hex | ' | 8 |
| CSS | \FF07 | \FF18 |
| JavaScript | \u{FF07} | \u{FF18} |
| Python | \uff07 | \uff18 |
| UTF-8 | ef bc 87 | ef bc 98 |
How to Distinguish
Both Fullwidth Apostrophe and Fullwidth Digit Eight 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.