The BASE64_DECODE function reads a Base64-encoded RAW input string and decodes it into its original RAW value.
Syntax
UTL_ENCODE.BASE64_DECODE (
r IN RAW)
RETURN RAW;
Parameters
| Parameter | Description |
|---|---|
| r | The Base64-encoded RAW string to be decoded. This parameter has no default values and this function has no optional parameters. |
Return values
| Return value | Description |
|---|---|
| RAW | The RAW value that contains the decoded string. |