I want to manually check each character of a string
for whether it contains any full width characters. Can someone help me?
This is what I have so far:
public boolean areAnyFullWidth(String input) {
for (char c : input.toCharArray())
if ((c & 0xff00) == 0xff00)
return true;
return false;
}