I have some words want to recognize. For example,I have this image:
Import["https://i.stack.imgur.com/FFYhS.png"] // TextRecognize
But the result is wrong.
Import["https://i.stack.imgur.com/FFYhS.png"] // TextRecognize[ImageResize[#, Scaled[2]]] &
Enlarging the image isn't help to the quality of recognized text.
So how to resolve this problem?

TextRecognize@WienerFilter[#, 2] &@ImageResize[#, Scaled[2]] &@ Import["http://i.stack.imgur.com/FFYhS.png"]. It unfortunately mistakes 0 for U. – corey979 Sep 24 '16 at 12:37