I would like to be able to have a function to translate single-character strings to their Unicode Code Point. This function could be called "Code" or even "ASCII". It would accept a string as its sole input argument, and would return the number corresponding to the Code Point of the first character in the string. Thus "A" (Code Point U+0041) would be returned as 65, and so forth.
... View more