Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
I would like to echo the unicode character "é" in cmd via running bat file. I prepared a short script:
@echo off SET message=Gép3 echo %message% pause
how can I do that? Is there a possibility to put directly this letter into the code?
charmap
Do this (both are important):
chcp 65001
i. e. edit your example code in this way:
@echo off chcp 65001 SET message=Gép3 echo %message% pause
Again, it is important that you save your .bat file with encoding UTF-8
Add a comment
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.
charmapin Start Run dialog (Winkey + R). Select Dos Western Europe or whatever your region is. CMD use DOS character set.