snowflake.snowpark.functions.unbase64¶ snowflake.snowpark.functions.unbase64(e: Union[Column, str], alphabet: Optional[str] = None) → Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.47.0/src/snowflake/snowpark/functions.py#L12016-L12045)¶ Decodes a Base64-encoded string to a string. Example CopyExpand>>> df = session.create_dataframe(["U25vd2ZsYWtl", "SEVMTE8="], schema=["input"]) >>> df.select(base64_decode_string(col("input")).alias("decoded")).collect() [Row(DECODED='Snowflake'), Row(DECODED='HELLO')] Show lessSee moreScroll to top