Data transformation (marshalling) and encoding helpers. Provides data transformation and encoding utility functions. Returns a decoded [PackedByteArray] corresponding to the Base64-encoded string [code]base64_str[/code]. Returns a decoded string corresponding to the Base64-encoded string [code]base64_str[/code]. Returns a decoded [Variant] corresponding to the Base64-encoded string [code]base64_str[/code]. If [code]allow_objects[/code] 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 [code]utf8_str[/code]. Returns a Base64-encoded string of the [Variant] [code]variant[/code]. If [code]full_objects[/code] is [code]true[/code], encoding objects is allowed (and can potentially include code).