How to represent Unicode Chr Code in VB.Net String literal? - Stack Overflow
\u0030 is a plain 0 - 0 has the value 48, which is equal to 0x30, which is the requested codepoint, as those escapes are written in hexadecimal. You were probably thinking of decimal 30, \u001e, which, according to unicode.org/charts/PDF/U0000.pdf...