Skip to content

Instantly share code, notes, and snippets.

Created September 16, 2014 01:16
Show Gist options
  • Save anonymous/fa450f7bc4e43ecefe30 to your computer and use it in GitHub Desktop.
Save anonymous/fa450f7bc4e43ecefe30 to your computer and use it in GitHub Desktop.
[1] pry(main)> a = String.new
=> ""
[2] pry(main)> a.encoding
=> #<Encoding:ASCII-8BIT>
[3] pry(main)> a << "\xaa\xbb"
=> "\xAA\xBB"
[4] pry(main)> a.encoding
=> #<Encoding:UTF-8>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment