Typed the digit "1" and search still comes up empty? A fullwidth character might be mixed in.
The difference between fullwidth and halfwidth
East Asian writing systems (Chinese characters, kana) were designed around a roughly square "fullwidth" cell, and to stay compatible with that, fullwidth versions of Latin letters, digits, and symbols were also created. ๏ผ๏ผ๏ผ (fullwidth) and 123 (halfwidth) look nearly identical but are entirely different Unicode code points.
Why search and processing fail to match
Ordinary search and comparison logic requires an exact character code match, so searching for halfwidth "123" won't find data containing fullwidth "๏ผ๏ผ๏ผ". This commonly sneaks in through data pasted from a spreadsheet or text typed on a Japanese keyboard.
When normalization is needed
Before merging data from multiple sources into one database, or before validating a user-entered phone number or ID-format field, normalizing fullwidth characters to halfwidth is a necessary cleanup step.