pyspark.sql.functions.
unhex
Inverse of hex. Interprets each pair of characters as a hexadecimal number and converts to the byte representation of number.
New in version 1.5.0.
Changed in version 3.4.0: Supports Spark Connect.
Column
target column to work on.
string representation of given hexadecimal value.
Examples
>>> spark.createDataFrame([('414243',)], ['a']).select(unhex('a')).collect() [Row(unhex(a)=bytearray(b'ABC'))]