Skip to content

Instantly share code, notes, and snippets.

@silencesys
Last active May 20, 2017 19:58
Show Gist options
  • Save silencesys/5c28e41c6ac3b2a496163d2bedcec04f to your computer and use it in GitHub Desktop.
Save silencesys/5c28e41c6ac3b2a496163d2bedcec04f to your computer and use it in GitHub Desktop.
Anglo-saxon Character map
<?php
$characterMap = [
'ð' => 'th', 'Ð' => 'Th', 'Þ' => 'Th', 'þ' => 'th', 'đ' => 'd',
'Ƿ' => 'W', 'ƿ' => 'w', 'Ȝ' => 'G', 'ȝ' => 'g', 'æ' => 'ae',
'Æ' => 'AE'
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment