Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("1")
WebView1.LoadHtml("<p>󾓦</p>")
EditText1.Text = UnicodeToString(0xFE4E6)
End Sub
Sub UnicodeToString (codepoint As Int) As String
Dim bc As ByteConverter
Dim b() As Byte = bc.IntsToBytes(Array As Int(codepoint))
Return BytesToString(b, 0, 4, "UTF32")
End Sub
Go ahead and add itYou should copy this your code to the section "Snippets", dear new member (Erel), please.
Thank you
From ICS soft keyboard smiley button
":-)"
"B-)"
":'("
":-["
":-!"
":)"
":-*"
":-D"
":-X"
":-$"
":-O"
":-P"
":-\"
";)"
"o.O"
":0"
":-|"
":("
"x-("
"<3"
Activity.Title = "안녕하세요"
I'm afraid no. Try to find a Java solution and I can help you convert it. I didn't find any.Do you know how to "Add" the consonant value to the vowel value that points to the codepage/glyph with the resultant character?
Dim s As String = "ㅁㅕ"
Dim jo As JavaObject
jo.InitializeStatic("java.text.Normalizer")
For Each form As String In Array("NFD", "NFC", "NFKD", "NFKC")
Log(jo.RunMethod("normalize", Array(s, form)))
Next