Skip to content

Instantly share code, notes, and snippets.

@cdecl
Created February 7, 2024 12:15
Show Gist options
  • Save cdecl/c3232670e2d74e50dfb2c847255e3bbc to your computer and use it in GitHub Desktop.
Save cdecl/c3232670e2d74e50dfb2c847255e3bbc to your computer and use it in GitHub Desktop.
import unicodedata
import sys
def main():
for line in sys.stdin:
tostr = unicodedata.normalize('NFC', line)
print(tostr, end='')
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment