RegEx for Mathematical Alphanumeric Symbols
问题 I have been trying to remove bold characters like this: 𝐒𝐎𝐍𝐘𝐀 - New song As you see is a bold text without <b> tag. I had tried this, assuming that the characters are probably a type of emoticon, but I have not had any luck. $regex_emoticons = '/[\x{1F600}-\x{1F64F}]/u'; $clear_string = preg_replace($regex_emoticons, '', $string); $regex_symbols = '/[\x{1F300}-\x{1F5FF}]/u'; $clear_string = preg_replace($regex_symbols, '', $clear_string); $regex_transport = '/[\x{1F680}-\x{1F6FF}]/u'; $clear