At Tue, 16 Feb 2021 16:03:29 -0500, Ben Greenman wrote: > Sadly, I've already compressed a few files using > `call-with-output-string` ... is there an easy way to decompress those > / undo the UTF-8 encoding?
Unfortunately, the underlying `get-output-string` conversion is lossy, because bytes that don't form a UTF-8 encoding are converted to U+FFFD. (I see that the docs say #\? instead of #\uFFFD, and I'll fix the docs.) -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/racket-users/20210216142714.130%40sirmail.smtps.cs.utah.edu.

