Skip to content

Instantly share code, notes, and snippets.

@benigumocom
Last active May 26, 2023 15:49
Show Gist options
  • Select an option

  • Save benigumocom/e55d492aa95086c40eb8edc20496986b to your computer and use it in GitHub Desktop.

Select an option

Save benigumocom/e55d492aa95086c40eb8edc20496986b to your computer and use it in GitHub Desktop.
fun String.printUnicodeEscapeSequences() {
println(this)
println(
this
.chars()
.joinToString("") { "\\u${it.toString(16).uppercase()}" }
)
println()
}
@benigumocom
Copy link
Copy Markdown
Author

絵文字が意図しない白黒で表示される ➡️ - Unicode Variation Selector
👉 https://android.benigumo.com/20230502/unicode-variation-selector/

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