I'm searching for a solution on how to manually check each character of a string if it contains any full width characters but I can't find any solution. 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;
}