Here is what I ultimately want:
A dictionary that holds unicode chars as keys and html code + unicode number as list values.
Basic_Latin = {
...
"@": ["U+0040", "@"],
...
}
How can this be achieved if only the key is given?
I think of something like this:
Basic_Latin = {
...
"@": [to_unicode(@), to_html(@)],
...
}
If find a lot of methods for converting the other way round, but not for what I am looking for.