Acute Accent vs Digit Four
VS
Property Comparison
| Property | ´ 00B4 | 4 0034 |
|---|---|---|
| Name | Acute Accent | Digit Four |
| Category | Latin Extended | Latin Extended |
| Block | Latin-1 Supplement | Basic Latin |
| Script | Zyyy | Zyyy |
| General Category | Modifier Symbol (Sk) | Decimal Number (Nd) |
| Bidirectional | ON | EN |
Encoding Comparison
| Format | 00B4 | 0034 |
|---|---|---|
| Unicode | U+00B4 | U+0034 |
| HTML Decimal | ´ | 4 |
| HTML Hex | ´ | 4 |
| CSS | \00B4 | \0034 |
| JavaScript | \u{B4} | \u{34} |
| Python | \u00b4 | \u0034 |
| UTF-8 | c2 b4 | 34 |
How to Distinguish
Both Acute Accent and Digit Four are in the Latin Extended category but reside in different Unicode blocks. Check the codepoint to tell them apart.
Tip: Paste the character into a hex editor or use
charCodeAt()
in JavaScript to check the actual codepoint.