Skip to content

Instantly share code, notes, and snippets.

@milseman
Last active May 23, 2018 17:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save milseman/869818d44635d6773a66a10bf638f170 to your computer and use it in GitHub Desktop.
Save milseman/869818d44635d6773a66a10bf638f170 to your computer and use it in GitHub Desktop.
Whitespace visibility example
let str1 = "a\u{1680}b"
let str2 = "a\u{0020}b"
print(str1) // "a b"
print(str2) // "a b"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment