I'm looking for a way to url decode a string variable on Freemarker.
For example, consider the following string: attr=hello+world%3F . Expected result: hello world?
Any simple way to get this result? somewhat like ${attr?urlDecode}? I could not find anything online.
Thanks.