StringUnicodeEncoderDecoder

This class provides Unicode conversion utility methods that allow to convert a string into Unicode sequence and vice-versa. (See methods descriptions for details)

Author

Michael Gantman

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
open fun decodeUnicodeSequenceToString(unicodeSequence: String): String
This method converts String that contains a sequence of Unicode codes onto a String of corresponding characters.
Link copied to clipboard
This method converts a String of characters in any language into a String That contains a sequence of Unicode codes corresponding to characters in the original String For Example String "Hello" will be converted into a String "\u005c\u00750048\u005c\u00750065\u005c\u0075006c\u005c\u0075006c\u005c\u0075006f" Null or empty String conversion will return an empty String