Print / show characters.
Variable | ASCII_LIST |
Fill in ASCII description values for Unicode names. |
Variable | ASCII_MAP |
Dictionary Map of ASCII_LIST. |
Function | unicodes |
yield all Unicode values. |
yield all Unicode values.
returns iterator of dictionaries in the following format:
{ "int": i, "hex": hval, "chr": char, "name": name.lower(), "pref": pref, "htmlent": htmlent }
example for letter "a":
{ "int": 97, "hex": "61", "chr": "a", "name": "latin small letter a", "pref": "\\u0061", "htmlent": "a" }
Returns | Undocumented (type: dict ) |