# 文字コードの置換(SHIFT-JIS → UTF-8)

``` sh
iconv -f cp932 -t utf-8 data_sjis.csv -o data.csv
```