Base64 Decoder

[string/Base64 Decoder]


Decodes the base64 string. Example:

1. `encoding` set to "utf8"<br>
2. "Zm9v"@0 received via `base64`<br>
3. "foo"@0 sent via `string`<br>
<br>
```<br>

---

### Input ports

* __base64__: ` string `

    Receives base64 string to be decoded.<br>
    <br>
    <br>
    Example:<br>
    ```<br>
    "Zm9v"<br>
    ```<br>


* __encoding__: ` string `

    Receives character encoding of the string to be decoded.<br>
    <br>
    Example:<br>
    ```<br>
    "utf8"<br>
    ```<br>

### Output ports

* __string__: ` string `

    Sends decoded string.<br>
    <br>
    Example:<br>
    ```<br>
    "foo"<br>
    ```<br>

Last updated