Get your own Python server Result Size: 625 x 565
x
 
a = "\u0030" #unicode for 0
b = "\u00B2" #unicode for ²
print(a.isdigit())
print(b.isdigit())
True
True