You can download this code by clicking the button below.
This code is now available for download.
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)