මාව ban කරොත් කියල hex විදිහට දානවා. උවමනා උන් string කරගෙන බලපියව්.
68747470733a2f2f742e6d652f67616c616d6461782f363034
Hex —> String කරන Python sample එකක්.
68747470733a2f2f742e6d652f67616c616d6461782f363034
Hex —> String කරන Python sample එකක්.
Python:
hex_string = input("Enter a hex string: ")
try:
byte_data = bytes.fromhex(hex_string)
result_string = byte_data.decode('utf-8')
print("Converted string:", result_string)
except ValueError:
print("Invalid hex string.")
Last edited:


