python_ref_string_isdigit_2.py:
x
 
a = "\u0030" #unicode for 0
b = "\u00B2" #unicode for 虏
print(a.isdigit())
print(b.isdigit())