apoc.text.urldecode Function APOC Core apoc.text.urldecode(text) - return the urldecoded text Signature apoc.text.urldecode(text :: STRING?) :: (STRING?) Input parameters Name Type Default text STRING? null Usage Examples RETURN apoc.text.urldecode("Neo4j+Aura") AS output; Table 1. Results output "Neo4j Aura" RETURN apoc.text.urldecode("Neo4j%3C3GRANDstack") AS output; Table 2. Results output "Neo4j<3GRANDstack" apoc.text.upperCamelCase apoc.text.urlencode