given hex, and formed bytes
looking for bytes to string
def hex_to_b:
return bytes.fromhex('abc')
#now you have a byte type string
#looking to decode back to the string
#failure of transformation
hex_to_b().decode(encoding="utf-8",errors="strict")