module documentation

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.
ASCII_LIST =

Fill in ASCII description values for Unicode names.

(type: list[dict])
ASCII_MAP =

Dictionary Map of ASCII_LIST.

def unicodes():

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"
    }
ReturnsUndocumented (type: dict)
API Documentation for v0tools, generated by pydoctor 21.2.2 at 1996-06-17 15:00:00.