# url.decode ## Function Percent decode the current text. ## Syntax ```bt url(text).decode() ``` ## Parameters None. ## Return value | Type | Description | | ------ | ------ | | String | Decoded text. | ## Code Example ```bt result = url('BT%20Lang').decode() // Output: BT Lang print result ``` ## Notes - Illegal UTF-8 is returned as a lossy string.