Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android default character encoding

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

like image 643
Arutha Avatar asked Feb 05 '10 13:02

Arutha


1 Answers

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.

like image 192
pgsandstrom Avatar answered Sep 22 '22 22:09

pgsandstrom