1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

(Linux)テキストファイルの文字コードをSJISからUTF8に変更する

Posted at

(Linuxコマンド)

iconv -f SHIFT_JIS -t UTF-8 input.dat > output.dat
  • iconvは文字コードを変換するLinuxコマンド
  • f SHIFT_JIS は元の文字コード
  • UTF-8 は変換先の文字コード
  • 「>」 の前は対象ファイル名
  • 「>」 の後は出力ファイル名
1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?