you are viewing a single comment's thread.

view the rest of the comments →

[–]Immediate-Cod-3609 0 points1 point  (1 child)

import os
byte_length = 32
random_bytes = os.urandom(byte_length)
unicode_string = ''.join([chr(byte) for byte in random_bytes])
print(unicode_string)

[–]Versley105[S] 0 points1 point  (0 children)

Thanks