The urlencode
translates a string into application/x-www-form-urlencoded
format using the "UTF-8" encoding scheme.
twig
{{ "The+string+%C3%BC%40foo-bar" | urldecode }}
The above example will output the following:
twig
The string ΓΌ@foo-bar
The urlencode
translates a string into application/x-www-form-urlencoded
format using the "UTF-8" encoding scheme.
{{ "The+string+%C3%BC%40foo-bar" | urldecode }}
The above example will output the following:
The string ΓΌ@foo-bar