base64_ decode
string | base64_decode
returns string
Decodes a string in Base64 format.
{{ 'b25lIHR3byB0aHJlZQ==' | base64_decode }}
Code
{{ 'b25lIHR3byB0aHJlZQ==' | base64_decode }}Output
one two three
Output
one two threeWas this page helpful?