Skip to content
Snippets Groups Projects
  • Georgy Kirichenko's avatar
    aff6235c
    Add iconv support · aff6235c
    Georgy Kirichenko authored
    Iconv is a library to convert a sequence of characters in one
    character encoding to a sequence of characters in another character
    encoding. Example below converts utf-16 big endian string into utf-8
    string:
    
        convertor = require('iconv').new('UTF-16BE', 'UTF-8')
        converted_string = convertor(source_string)
    
    Closes #2587
    aff6235c
    History
    Add iconv support
    Georgy Kirichenko authored
    Iconv is a library to convert a sequence of characters in one
    character encoding to a sequence of characters in another character
    encoding. Example below converts utf-16 big endian string into utf-8
    string:
    
        convertor = require('iconv').new('UTF-16BE', 'UTF-8')
        converted_string = convertor(source_string)
    
    Closes #2587