#unicode.py #display a range of Unicode characters. low = int(input("Unicode range start: ")) high = int(input("Unicode range end: ")) if low>high or low<0 or high>65535: print("BAD input. within 0-65535 only") quit() # chr(number) is the character whose underlying numeric code is number for i in range(low, high+1): print(str(i) + ":" + chr(i), end=" ") # CMD has fewer characters. print() print('\u05D0') #Unicode char whose hexadecimal value is 05D0