# encoding: utf-8
foo = "Résumé"
p foo
> "Résumé"
# encoding: utf-8
ARGV.each do |argument|
p argument
end
test.rb Résumé > "R\xE9sum\xE9"
Why does this occur, and how can I get ARGV to return "Résumé"?
I have chcp 65001 set already and am using ruby 1.9.2p290 (2011-07-09) [i386-mingw32]
EDIT After asking around on irc, I was instructed to do chcp 1252>NUL which fixed the problem.
porputs? – Josh Lee Sep 7 '11 at 19:44ARGV? Tryp argument.encodinginstead ofp argument. – mu is too short Sep 7 '11 at 20:05p argument.encodingreturns #<Encoding:UTF-8> andputs argumentreturns R�sum� – SaulGoodman Sep 7 '11 at 20:18