Skip to content

Instantly share code, notes, and snippets.

@DmmitryIs
Created April 29, 2019 10:41
Show Gist options
  • Save DmmitryIs/e8d26da74796334a2db837aac5ce131a to your computer and use it in GitHub Desktop.
Save DmmitryIs/e8d26da74796334a2db837aac5ce131a to your computer and use it in GitHub Desktop.
Cyrillic (russian alphabet) letters range with latin codes
$letters = [
'A' => 'А',
'B' => 'Б',
'V' => 'В',
'G' => 'Г',
'D' => 'Д',
'E' => 'Е',
'J' => 'Ж',
'Z' => 'З',
'I' => 'И',
'Y' => 'Й',
'K' => 'К',
'L' => 'Л',
'M' => 'М',
'N' => 'Н',
'O' => 'О',
'P' => 'П',
'R' => 'Р',
'S' => 'С',
'T' => 'Т',
'U' => 'У',
'F' => 'Ф',
'H' => 'Х',
'TS' => 'Ц',
'CH' => 'Ч',
'SH' => 'Ш',
'SCH' => 'Щ',
'EE' => 'Э',
'YU' => 'Ю',
'YA' => 'Я'
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment