is_ascii(str)
Determines whether the string str contains only ASCII-encoded characters.
str
> SELECT a, is_ascii(a) FROM VALUES (""), ("abcd"), ("café"), ("©®") AS t(a); true abcd true café false ©® false