Utils.decodeBase64

This function converts a base64 encoded string into a human-readable format.

Syntax

utils.decodeBase64(<input string>)

Arguments

Argument

Type

Description

string

string

The base64-encoded string, which needs to be decoded to a human-readable format.

Returns

Type

Description

bytes

Human-readable string represented by the base64 encoded input string.

Examples

The function utils.decodeBase64("SGVsbG8sIFdvcmxk") returns Hello, World.