This Gleam library decodes ISO/IEC 8859 binary data into a native string. All 15 ISO/IEC 8859 encodings are supported.
See https://en.wikipedia.org/wiki/ISO/IEC_8859 for details on the ISO/IEC 8859 encodings.
To add this library to your Gleam project:
gleam add iso_8859
To use it:
> iso_8859.decode_bytes(<<0xB4, 0xEC, 0xE0>>, iso_8859.Part5)
"Дьр"
API documentation can be found at https://hexdocs.pm/iso_8859.
This library is published under the MIT license, a copy of which is included.