-
Beta Was this translation helpful? Give feedback.
Answered by
SquidDev
Feb 9, 2024
Replies: 1 comment
-
Ahh. I suspect what's going on here is that your file is saved as UTF-8, but CC/Lua only works on plain bytes. This means that the Unicode codepoint is not saved as a literal You could possibly configure your editor to save as latin1, but it's probably just easier to use escape codes (so |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
B3N64
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ahh. I suspect what's going on here is that your file is saved as UTF-8, but CC/Lua only works on plain bytes. This means that the Unicode codepoint is not saved as a literal
\131
, but instead encoded as\194\131
.You could possibly configure your editor to save as latin1, but it's probably just easier to use escape codes (so
\131
) rather than pasting in the characters.