I'm making next record in order to compare entered chars with this array:
String[] GSM_7_BIT_EXT = {"\u000c", "\u005e", "\u007b", "\u007d", "\u005c", "\u005b", "\u007e", "\u005d", "\u007c", "\u20ac"};
After compile (Android Studio) getting lot of mistakes, like:
- '}' expected
- illegal character: \35
- expected
and many others.
What am I doing wrong?