fork(3) download
  1. line = "example \xb7\xc7\xa0...."
  2. import re
  3. t = re.findall (r'[\x80-\xff]', line)
  4. print t
Success #stdin #stdout 0.01s 6684KB
stdin
Standard input is empty
stdout
['\xb7', '\xc7', '\xa0']