I have this regex range for Latin being used in JavaScript
[\u0000-\u007F]
and want to convert it into PHP PCRE but it tells me \u This token is not supported while I just want to use the range of Unicodes
PCRE does not support the \uFFFF
syntax instead it uses \x{FFFF}
. For example:
[\x{0000}-\x{007F}]