in reply to Re^2: Unicode at Windows' cmd.exe
in thread Unicode at Windows' cmd.exe

Heh, your OS is not passing the correct locale. You can switch :locale in the use open to:
use open ':std', ':encoding(iso-8859-9)';
(for example, if the encoding you use is that, ':encoding(cp857)' if not)...
[]s, HTH, Massa

Replies are listed 'Best First'.
Re^4: Unicode at Windows' cmd.exe
by Burak (Chaplain) on Jul 15, 2008 at 08:27 UTC
    Yes :encoding(cp857) seems to work :) Thanks