as_char
No overview available.
def as_char(
value: Union[int, str]
) - > string
Converts a numeric value or a single-character string into its corresponding Unicode character representation.
Parameters
| Name | Type | Description |
|---|---|---|
| value | Union[int, str] | The numeric Unicode code point or a string to be converted into a character. |
Returns
| Type | Description |
|---|---|
string | A single-character string representing the Unicode character of the input value. |