Data transformation (marshaling) and encoding helpers. Provides data transformation and encoding utility functions. Returns a decoded [PackedByteArray] corresponding to the Base64-encoded string [param base64_str]. Returns a decoded string corresponding to the Base64-encoded string [param base64_str]. Returns a decoded [Variant] corresponding to the Base64-encoded string [param base64_str]. If [param allow_objects] is [code]true[/code], decoding objects is allowed. [b]Warning:[/b] Deserialized objects can contain code which gets executed. Do not use this option if the serialized object comes from untrusted sources to avoid potential security threats such as remote code execution. Returns a Base64-encoded string of a given [PackedByteArray]. Returns a Base64-encoded string of the UTF-8 string [param utf8_str]. Returns a Base64-encoded string of the [Variant] [param variant]. If [param full_objects] is [code]true[/code], encoding objects is allowed (and can potentially include code).