Hi guys , I have a problem with preg_replace
$text = preg_replace('/(?<!\S)#([0-9\p{L}]+)/', '<a href="/hashtag/$1" class="hashtagHref">#$1</a>', $text);
For non-English characters, it returns: ���
But the same code works fine for non-English characters in this link
https://regex101.com/r/Pquem3/1
I have the tag <meta charset = "UTF-8">'
on my page just in case.
Thanks in advance