URL_DECODE

Decodes a URL-encoded string.

Analyze Syntax

func.url_decode(<str>)

Analyze Examples

func.url_decode('hello%20world')

┌───────────────┐
 'hello world'  
└───────────────┘

SQL Syntax

URL_DECODE(<str>)

SQL Examples

SELECT URL_DECODE('hello%20world');

┌─────────────┐
 hello world  
└─────────────┘