Reputation: 13
Need to test some operations on Greek text. Sure enough, the scratch file accepts something like
var testString = "θερμοσίφωνας"
However any println("θερμοσίφωνας")
will give me ????????????
I have always been able to find a solution searching stack overflow. Not this time!
Settings > File Encodings > Global & Project
both set to UTF-8
tried
var testString = "θερμοσίφωνας"
println(testString)
or
println("θερμοσίφωνας")
Log.d from scratch file possible?
Upvotes: 0
Views: 44