-
I can't get the debug console display UTF-8 chars in VS code. To replicate : object Trivial extends App {
println("éléphant")
} Ouput is:
Does everyone gets the same result ? Edited : the output is wrong using both the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Thanks for the question! It seems to work fine for me. Maybe it's related to encoding in VS Code? Could you search the settings for |
Beta Was this translation helpful? Give feedback.
Thanks for the question! It seems to work fine for me. Maybe it's related to encoding in VS Code? Could you search the settings for
encoding
and see if it's properly set there? Alternatively, you could try adding-Dfile.encoding=UTF-8
to the jvm options in the run configuration (.vscode/launch.json
), but I don't need to set it myself and it seems to work.