Clojure failing to print non-ASCII chars on OS X-Collection of common programming errors

I’ve installed Clojure 1.2.0 using Homebrew package management system on Mac OS X 10.6.4. Running:

$ clj -e '(println "??????? ????\n")'

in the Terminal results in:

??????? ????

While running in the same terminal:

$ php -r 'echo "??????? ????\n";'

displays the Cyrillic text correctly.

The same effect when running $ clj

Is that a known issue? Java Runtime-related? I thought at this point languages finally get Unicode right.