Insert unicode symbols to edittext

android, android-edittext, unicode

Solution

editText.setText("\u00A9 2013 by John Smith");

will put the copyright symbol followed by " 2013 by John Smith" into the the EditText editText.

Problem

How to insert Unicode symbols to edit text? In iOS we can do it by just by specifying the code i.e `\U0001F68A` .What about android ?

Original source