Sequence char to string code example
Example 1: kotlin charsequence to string
charSeq.toString()
Example 2: android studio char to string
(char[]).toString();//the lvalue or even rvalue of char[] + toString()
String MyString = new String(MyChars);