4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CSVの日本語が文字化けするときの対処

Last updated at Posted at 2017-06-02

対象

  • Windowsで作成したCSVや,ダウンロードしてきたCSV
  • MacのExcelで開いたら日本語が文字化けしている
  • Mac,Linuxのテキストエディタで開けない/文字化けする 等

対処

Terminalからiconvコマンドを使う

開きたいcsvファイルがinput.csvだとすると

iconv -f cp932 -t utf8 input.csv

別ファイルとして出力する場合は

iconv -f cp932 -t utf8 input.csv -o output.csv

標準で使えるので便利

4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?