Skip to content

Instantly share code, notes, and snippets.

@Alex4386
Last active October 12, 2023 06:59
Show Gist options
  • Save Alex4386/913e0eec68dbd8356b5f9c5f98765d74 to your computer and use it in GitHub Desktop.
Save Alex4386/913e0eec68dbd8356b5f9c5f98765d74 to your computer and use it in GitHub Desktop.
one-liner Unicode Flag Builder
"US".toUpperCase().split("").map(n => n.charCodeAt(0) - 65 + 0x1f1e6).map(n => String.fromCodePoint(n)).join("").toString()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment