Skip to content

Decodes a URL-encoded string.

func.url_decode(<str>)
func.url_decode('hello%20world')
┌───────────────┐
'hello world'
└───────────────┘
URL_DECODE(<str>)
SELECT URL_DECODE('hello%20world');
┌─────────────┐
│ hello world │
└─────────────┘