Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.4k views
in Technique[技术] by (71.8m points)

windows - Using non-ASCII characters in a cmd batch file

I'm working on a .bat program, and the program is written in Finnish. The problem is that CMD doesn't know these "special" letters, such as ?, ?, ?.

Is there a way to make those work? I'd also like it if the user could use those letters too.

Part of my code:

    @echo off
    /u
    title JustATestProgram
    goto test123

    :test123
    echo Letters : ?? ?? ??
    pause
    exit

When I open this file, the letters look like this:

Enter image description here

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try putting this line at the top of the batch file:

chcp 65001

It should change the console encoding to UTF-8, and you should be able to read the file properly in the script after that.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...