SubName: UnicodeToString
Author: Erel
Description: allows you to insert Unicode "special" characters in text strings.
Code:
Dependencies: ByteConverter library
Tags: Unicode, Characters, Text
Author: Erel
Description: allows you to insert Unicode "special" characters in text strings.
Code:
B4X:
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
Dependencies: ByteConverter library
Tags: Unicode, Characters, Text