examples/regex/character_class_unicode.py
import re text = "๐ท๐ธ๐น๐บ๐ปโ๐ผ๐ฝ๐พ๐ฟ๐๐๐" print(text) #print(chr(128120)) #print(0x1f000) match = re.search(r"[\U0001f000-\U00020000]+", text) if match: print(match.group(0)) for emoji in text: print(emoji, ord(emoji), "{:x}".format(ord(emoji))) match = re.search(r"[๐ท-๐]*", text) print(match.group(0))