Where in the world is the mysterious injection of c2 and c3 documented?! $ echo -n '\u00e6\u0088\u0091\u00e5\u0092\u008c'|ascii2uni -a U|od -t x1 6 tokens converted 0000000 c3 a6 c2 88 c2 91 c3 a5 c2 92 c2 8c 0a 0000015 I had to do $ echo -n '\u00e6\u0088\u0091\u00e5\u0092\u008c'|sed 's/\\u00/%/g'|ascii2uni -a J|tee /dev/stderr|od -t x1 6 tokens converted 我和 0000000 e6 88 91 e5 92 8c 0a 0000007
There is a bug here: echo -n 'const t.\u0275fac=1;' | ascii2uni -a U const t.=1; 1 token converted The "fac" is been stripped.
Hmm, thanks for letting me know. I will have a look. Bill
Hi Bill, I can use the following command arguments to solve the problem. *echo -n 'const t.\u0275fac=1;' | ascii2uni -Z '\u%04X'* But I think the *-a U* still buggy. Bill Poser <billposer2@gmail.com> 於 2020年3月1日 週日 下午1:56寫道: