Skip to content

Instantly share code, notes, and snippets.

@joeyAghion
Last active April 8, 2018 02:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save joeyAghion/5049d99d9722108f16382d6ffa8edac9 to your computer and use it in GitHub Desktop.
Save joeyAghion/5049d99d9722108f16382d6ffa8edac9 to your computer and use it in GitHub Desktop.
> "Báe".length
=> 4
> "Báe".encoding
=> #<Encoding:UTF-8>
> "Báe".encode('utf-8', 'utf-8-mac').encoding
=> #<Encoding:UTF-8>
> "Báe".encode('utf-8', 'utf-8-mac').length
=> 3
> "Báe".codepoints
=> [66, 97, 769, 101]
> "Báe".encode('utf-8', 'utf-8-mac').codepoints
=> [66, 225, 101]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment