Unicode Code Point to Character Converter

  • Share this:

Code introduction


This function takes a Unicode code point as an argument and returns the corresponding character.


Technology Stack : chr()

Code Type : Function

Code Difficulty :


                
                    
def achr(code_point):
    """
    返回给定Unicode码点的字符。
    """
    return chr(code_point)                
              
Tags: