Skip to content

Instantly share code, notes, and snippets.

@the-teacher
Created June 9, 2014 07:36
Show Gist options
  • Save the-teacher/f99a36de0befea9bc6f4 to your computer and use it in GitHub Desktop.
Save the-teacher/f99a36de0befea9bc6f4 to your computer and use it in GitHub Desktop.
1251 encode
$ x = "http://yandex.ru/yandsearch?text=%E4%E6%E0%E7%EE%E2%FB%E9+%EA%EE%EB%EB%E5%EA%F2%E8%E2&lr=213"
$ CGI.unescape x
=> "http://yandex.ru/yandsearch?text=\xE4\xE6\xE0\xE7\xEE\xE2\xFB\xE9 \xEA\xEE\xEB\xEB\xE5\xEA\xF2\xE8\xE2&lr=213"
$ x = CGI.unescape(x).force_encoding('windows-1251').encode
=> "http://yandex.ru/yandsearch?text=джазовый коллектив&lr=213"
$ x.encoding
=> #<Encoding:UTF-8>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment