If you’re on Windows, PowerShell can convert csv to json pretty easily:
```powershell
Import-Csv 'file.csv' | ConvertTo-Json | Out-File 'output.json'
```
Not the prettiest output, but it’s built-in and works in a pinch.
For special chars, maybe try Notepad++ to check encoding first?
```powershell
Import-Csv 'file.csv' | ConvertTo-Json | Out-File 'output.json'
```
Not the prettiest output, but it’s built-in and works in a pinch.
For special chars, maybe try Notepad++ to check encoding first?
