Skip to content

Instantly share code, notes, and snippets.

@evg2108
Created December 23, 2015 07:51
Show Gist options
  • Save evg2108/664d8589c3f78730ed81 to your computer and use it in GitHub Desktop.
Save evg2108/664d8589c3f78730ed81 to your computer and use it in GitHub Desktop.

Для того чтобы перекодировать текст в другую кодировку, но если, при этом, приложение неправильно определяет в какой кодировке приходит текст, то делаем следующее:

  received_text.force_encoding('Windows-1251').encode('UTF-8')

Здесь force_encoding указывает в какой кодеровке текст находится сейчас, а encode перекодирует этот текст в указанную кодировку.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment