unicode_url
No overview available.
def unicode_url(
url: string
) - > string
Converts a URL string into a Unicode-safe format by decoding percent-encoded characters. This is used to ensure URLs are human-readable or compatible with systems requiring UTF-8 representation rather than ASCII-only encoding.
Parameters
| Name | Type | Description |
|---|---|---|
| url | string | The percent-encoded URL string to be converted into Unicode. |
Returns
| Type | Description |
|---|---|
string | The decoded URL string containing Unicode characters where applicable. |