A little example: the image now contains 'MultiStrings' which have various encodings.
To write out a MultiStrings to UTF-8 now?
you have to use something like this
f _ FileStream newFileNamed: 'foo.txt'.
f converter: UTF8TextConverter new. "This is not necessary as it is the default."
f nextPutAll: aString.
f close.
Updated 24-Mar-03 hjh by using the information from Boris Gaertner
Update 1-JUL-03 MarcusDenker added Howto-link
Update 4-NOV-03 hjh Link to version for Squeak 3.6 added