Glazenier
Glazenier

Reputation: 13

Android Studio, how to print unicode output from kotlin scratch file

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

Answers (0)

Related Questions