Drop a CSV with Japanese names and data. The tool NFKC-normalizes zenkaku/hankaku characters, trims whitespace, normalizes phone numbers, lowercases emails, and removes duplicate rows — all in your browser, nothing is uploaded.
NFKC normalization and deduplication apply to all columns regardless of this selection. Name/phone/email selections enable the extra cleaning steps for those columns.
Preview (first 50 rows · green = changed, red badge = duplicate removed):
Abc123 → Abc123. 田中 太郎 → 田中 太郎.03-1234-5678 → 0312345678.User@Example.COM → user@example.com.A (U+FF21) or 1 (U+FF11) — are converted to their ordinary half-width equivalents (A, 1). This is critical for Japanese name lists because the same person's name might be stored with zenkaku digits in one record and hankaku in another, making them look different even though they are the same. NFKC normalization is the standard pre-processing step before deduplication and database import.-, -), parentheses (()、()), spaces, and dots, leaving only digits. A leading + for international dialling codes is preserved. So (03)1234-5678, 03-1234-5678, and 0312345678 all become 0312345678, making deduplication far more effective.