Codetext - one or more charactersReturns the Unicode code points for the characters in text. If zero characters are in text, returns an empty string.When converting a composite character such as ä, the function returns the Unicode code point for the composite character.
Code(“”) returns an empty string.Code(“a”) returns 97.Code(“b”) returns 98.Code(“ab”) returns 9800097.Code(“ä”) returns 228.