base64_decode
Decode a Base64 string into UTF-8 text and report invalid payloads as errors when recovering embedded credentials, tokens, or transport-encoded content.
Use when:
Decode this Base64 string to UTF-8 text
Recover plain text from a Base64-encoded payload
Check whether a Base64 string is valid and decode it
Do not use when:
Encode plain text to Base64 (use base64_encode)
Decode percent-encoded URL components (use url_decode)
Decrypt ciphertext—Base64 decoding is not decryption
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| value | Yes | Base64 text to decode |