tr() and translated version of sourceText
-
That's not ASCII. That's UTF-8.
\302\261is a C's octal escape sequence.\302octal is0xC2in hex and\261is0xB1hex, so it's a 2-byte UTF-8 sequenceC2B1mapped to "plus-minus sign".
You can use any unicode table to look it up, for example http://graphemica.com/%C2%B1. -
That's not ASCII. That's UTF-8.
\302\261is a C's octal escape sequence.\302octal is0xC2in hex and\261is0xB1hex, so it's a 2-byte UTF-8 sequenceC2B1mapped to "plus-minus sign".
You can use any unicode table to look it up, for example http://graphemica.com/%C2%B1.@Chris-Kawa Thank you, that's exactly what i'm looking for!