1
0

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 1 year has passed since last update.

【バッチファイル】文字コードはUTF-8のほうがいい

Posted at

はじめに

もう、Shift_JISは終わりです。
Windowsのメモ帳のデフォルトの文字コードもUTF-8になったので。

これからは、バッチファイルもUTF-8で書くようにしましょう。

コマンドプロンプトのデフォルトの文字コードをUTF-8にする

こちらを参考にすれば、コマンドプロンプトのデフォルトの文字コードをUTF-8にすることができます。

Windowsのコマンドプロンプトの文字コードを設定 | Linuxコマンド.NET

これからのバッチファイルのテンプレ

これからのバッチファイルは、先頭にこのように書くべきだと思います。

こちらに書かれているテンプレに一行追加しただけです。
【bat】Windowsのバッチファイル(*.bat)の書き方自分用まとめ

@echo off
chcp 65001 > nul
cd /d %~dp0
1
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?