Comma vs Semicolon
VS
Property Comparison
| Property | , 002C | ; 003B |
|---|---|---|
| Name | Comma | Semicolon |
| Category | Latin Extended | Latin Extended |
| Block | Basic Latin | Basic Latin |
| Script | Zyyy | Zyyy |
| General Category | Other Punctuation (Po) | Other Punctuation (Po) |
| Bidirectional | CS | ON |
Encoding Comparison
| Format | 002C | 003B |
|---|---|---|
| Unicode | U+002C | U+003B |
| HTML Decimal | , | ; |
| HTML Hex | , | ; |
| CSS | \002C | \003B |
| JavaScript | \u{2C} | \u{3B} |
| Python | \u002c | \u003b |
| UTF-8 | 2c | 3b |
How to Distinguish
Both Comma and Semicolon belong to the Latin Extended category and the Basic Latin 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.