My title terms might not be correct and may be a reason why I can't find this simple thing from websites.
I have a list of string variables. How do I actually concatenate them and output a real unicode sentence in Python?
base = ['280', '281', '282', '283']
end = ['0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f']
unicodes = [u''.join(['\u', j, i]) for j in base for i in end]
for u in unicodes:
print u
I will get only strings like '\u280F' but not real character. But if I do:
print u'\u280F'
correct symbols shows up, which is: ⠏
And I'm sure there is a more elegant way to get a range of the symbols from u2800 to u283F...