Skip to content

Instantly share code, notes, and snippets.

@marclundgren
Created June 21, 2019 00:24
Show Gist options
  • Save marclundgren/bca6edb2efecc4aa64808195d5b30c3d to your computer and use it in GitHub Desktop.
Save marclundgren/bca6edb2efecc4aa64808195d5b30c3d to your computer and use it in GitHub Desktop.
// Sunflower Slice
// Chrome
'a 🌻'.slice(0, 3); // "a �"
// Firefox
'a 🌻'.slice(0, 3); // "a \ud83c"
// Safari
'a 🌻'.slice(0, 3); // "a " 👈 running this results in a string that cannot be copied to the clipboard
// All Browsers
'a 🌻'.slice(0, 2); // "a "
'a 🌻'.slice(0, 4); // "a 🌻"
@marclundgren
Copy link
Author

marclundgren commented Jun 21, 2019

let str = 'a%20%uD83C%uDF3B';
// Chrome
unescape(str).split('')
(4) ["a", " ", "�", "�"]

// Firefox
unescape(str).split('')
Array(4) [ "a", " ", "\ud83c", "\udf3b" ]

// Safari
unescape(str).split('')
["a", " ", "", ""]

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