Your Go-To Regular Expression Reference: Unicode Part III
\u0A01 through \u0Fff
Dec 3, 2023108 min read92
Search for a command to run...
Articles tagged with #regex
\u0A01 through \u0Fff
\u0500 to \u0a00
\u0000 to \u04ff
\x00 matches the NULL character, char code 0. \x01 matches SOH (start of heading), char code 1. \x02 matches STX (start of text), char code 2. \x03 matches ETX (end of text), char code 3. \x04 matches EOT (end of transmit), char code 4. \x05 matches ...
\cA and \ca represent SOH (start of heading), char code 1. \cB and \cb represent STX (start of text), char code 2. \cC and \cc represent ETX (end of text), char code 3. \cD and \cd represent EOT (end of transmit), char code 4. \cE and \ce represent E...
JavaScript flavor