Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We have a project in TFS that has a non-English character (š) in it. When trying to script a few build-related things we've stumbled upon a problem - we can't pass the š letter to the command line tools. Command prompt or what not else messes it up, and the tf.exe utility can't find the specified project.

I've tried different formats for the .bat file (ANSI, UTF-8 with and without BOM) as well as scripting it in JavaScript (which is Unicode inherently) - but no luck. Anybody have an idea how to excecute a program and pass it a Unicode command line?

share|improve this question
@JohannesDewender - Copy-paste gone wrong? – Vilx- Dec 19 '12 at 8:25
yes, and I don't know the correct link anymore.. -> deleted comment – JonnyJD Dec 19 '12 at 11:14

5 Answers

up vote 63 down vote accepted

Try:

chcp 65001

which will change the code page to UTF-8. Also, you need to use Lucida console fonts.

share|improve this answer
6  
Do you know if there's a way to make this the default? – Annan Nov 14 '11 at 13:55
By me Lucida font stays chosen, but chcp must be typed each time... anyway great thanx for this tip, I didn't even thought it is possible :) – Łukasz Lech Nov 21 '11 at 15:41
7  
Note there are serious implementation bugs in Windows's code page 65001 support which will break many applications that rely on the C standard library IO methods, so this is very fragile. (Batch files also just stop working in 65001.) Unfortunately UTF-8 is a second-class citizen in Windows. – bobince Dec 29 '11 at 21:51
Upvotes for everyone and accepted this answer because it's the most upvoted one. We moved away from TFS not long after this question was posted, so it's not relevant anymore. I also can't say if it works or not because we don't have a TFS server anymore to test on. – Vilx- Jan 28 '12 at 13:30
1  
@bobince Do you have an example of a bug in the Windows code page 65001 support? I'm curious because I've never run into one, and googling didn't turn anything up either. (Batch files do stop working, of course, but UTF-8 is hardly a second-class citizen...) – romkyns Dec 3 '12 at 2:09
show 3 more comments

Actually, the trick is that the command prompt actually understands these non-english characters, just can't display them correctly.

When I enter a path in the command prompt that contains some non-english chracters it is displayed as "?? ?????? ?????". When you submit your command (cd "??? ?????? ?????" in my case), everything is working as expected.

share|improve this answer
This is probably a bit dangerous as you could get naming conflict. e.g., if you have two files both which render as "???", and you enter "cd ???" it wouldn't know which to use (or worse would choose an arbitrary one). – John Jun 16 '09 at 13:53
5  
You don't enter ???, you enter the real name it's just being displayed as ???. Think of it as of a password input box. Whatever you enter is displayed as ***, but submitted is the original text. – User Jun 16 '09 at 14:52

I had same problem (I'm from Czech Republic). I have English installation of windows and I have to work with file on shared drive. Path to this file include Czech specific characters. Solution that works for me is:

In batch file, change charset page

My batch file:

chcp 1250
copy "O:\VEŘEJNÉ\ŽŽŽŽŽŽ\Ž.xls" c:\temp

Batch file has to be saved in CP 1250!

note that console will not show characters correctly but it will understand them ...

share|improve this answer
Cheers! I needed this so that I could input the copyright character within my batch file. – Lea Hayes Jul 30 '12 at 3:18

for a similar problem, (my problem was to show utf8 characters from mysql on command prompt), I solved it like this:

  1. I changed the font of command prompt to Lucida. (This step must be irrelevant for your situation. It has to do only with what you see on the screen and not with what is really the character).

  2. I changed the codepage to windows-1253. You do this on command prompt by "chcp 1253". It worked for my case where I wanted to see utf-8.

share|improve this answer
Windws-1253 isn't an Unicode codepage. It's a standard 256-character codepage. Apparently you only used characters that can be displayed in that codepage, but it won't be universal. – Vilx- Dec 2 '12 at 13:05

Check the language for non-Unicode programs. If you have problems with Russian in windows console, then you should set here Russian: Changing language for non-Unicode programs

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.