I'm in the process of learning more about Unicode. Could someone please demonstrate how to translate a code point value to a character string and vice-versa.
For example: How do you convert U+0037 to its character or string representation which is 7.
Please also show how to do this for ascii. For example: convert to its character or string representation which is a space.
chr()to get a character. That will be fine for code points in the BMP. HTML entities are something else altogether.chr(). Then parse the code point ordianl out of'U+0037'. And html entities are completely different. Get a database of those.