Skip to content

Instantly share code, notes, and snippets.

@BrettGregson
Created March 7, 2021 10:41
Show Gist options
  • Save BrettGregson/ce0253452696f156d91e8d7185a521da to your computer and use it in GitHub Desktop.
Save BrettGregson/ce0253452696f156d91e8d7185a521da to your computer and use it in GitHub Desktop.
Czech to English character map
var data = {
"Á" : "A",
"á" : "a",
"Č" : "C",
"č" : "c",
"Ď" : "D",
"ď" : "d",
"É" : "E",
"é" : "e",
"ě" : "e",
"Í" : "I",
"í" : "i",
"Ň" : "N",
"ň" : "n",
"Ó" : "O",
"ó" : "o",
"Ř" : "R",
"ř" : "r",
"Š" : "S",
"š" : "s",
"Ť" : "T",
"ť" : "t",
"Ú" : "U",
"ú" : "u",
"ů" : "u",
"Ý" : "Y",
"ý" : "y",
"Ž" : "Z",
"ž" : "z",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment