Reputation: 26488
What is the default character encoding of the Android system? Which Charset
is used?
Upvotes: 41
Views: 37189
Reputation: 14399
The default character encoding for Android is UTF-8, as specified by the JavaDoc of the Charset.defaultCharset()
method. It can be validated by calling that same method.
Upvotes: 58