I'm having trouble getting Ringo.JS to print unicode characters. My runtime environment is cygwin. I've boiled it down to a one-line program (see below) that exhibits the problem. The cat
indicates my terminal is capable of displaying the unicode text, but ringo does not. I'm wondering if the "ringo" shell script is somehow being executed in a non-unicode conformant way, but I'm not fluent in the ways of exec
-ing shells. much less in knowing why some methods may or may not have unicode support.
Is there a way to get ringo to print unicode correctly in cygwin?
$ cat unicodeTest.js
print( "αλφα" );
console.log( "αλφα" );
$ ringo unicodeTest.js
αλφα
αλφα
$ ringo --version
RingoJS version 0.10
$ which ringo
/cygdrive/c/bin/ringojs-0.10/bin/ringo
UPDATE:
Out of curiosity I tried redirecting the output to a file and checking it. There is definitely something wrong with the way ringo is running in my terminal, because the terminal can print unicode and ringo processes unicode correctly, but ringo won't print unicode in the terminal. Does anyone know what might cause this?
$ ringo unicodeTest.js > output.text
αλφα
$ cat output.text
αλφα
UPDATE #2:
It appears that ringo for windows is not built to support utf8 in console I/O. However, node.js works. I switched to a different machine running a different version of windows and got similar results.
$ cat utf8test.js
console.log( "καίρε, κόσμε" );
$ ringo utf8test.js
και��ε, κο�σμε
$ node utf8test.js
καίρε, κόσμε
So bottom line, if you want to write a JavaScript program to do utf8 on the console in windows, then the solution is to use node.js and not ringojs. The node.js devs have added blocking I/O versions of a lot of the API (c.f. fs.readFile vs. fs.readFileSync), so you can pick the I/O model that suits your needs.