C converts HEX value from emacs to wrong value
1 answer
The unicode character U + 009E is represented in UTF-8 as C2 9E bytes (see this handy converter ). Your emacs are probably configured to save files in UTF-8. Try loading the file into emacs with M-x find-file-literally
and see if it outputs as \302\236
(octal representation C2 9E). If so, you should be able to uninstall \302
and see if it improves program execution.
+4
a source to share