Arutha
Arutha

Reputation: 26488

Android default character encoding

What is the default character encoding of the Android system? Which Charset is used?

Upvotes: 41

Views: 37189

Answers (1)

pgsandstrom
pgsandstrom

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

Related Questions