here is something thing fun and maybe explored...
this is small python script.
import unicodedata
u = unichr(1962) + unichr(1925) + unichr(1958) + unichr(1924) + unichr(1963) + unichr(1934) + unichr(1958) + unichr(1922)
for i, c in enumerate(u):
print i, '%04x' % ord(c), unicodedata.category(c),
print unicodedata.name(c)
print u
No comments:
Post a Comment