Skip to content

Instantly share code, notes, and snippets.

@kenany
Last active August 29, 2015 14:00
Show Gist options
  • Select an option

  • Save kenany/806dfac4db64196f218b to your computer and use it in GitHub Desktop.

Select an option

Save kenany/806dfac4db64196f218b to your computer and use it in GitHub Desktop.
var MAP = {
'a': 'ᵃ',
'b': 'ᵇ',
'c': 'ᶜ',
'd': 'ᵈ',
'e': 'ᵉ',
'f': 'ᶠ',
'g': 'ᵍ',
'h': 'ʰ',
'i': 'ᶦ',
'k': 'ᵏ',
'l': 'ᶫ',
'm': 'ᵐ',
'n': 'ᶰ',
'o': 'ᵒ',
'p': 'ᵖ',
'r': 'ʳ',
's': 'ˢ',
't': 'ᵗ',
'u': 'ᵘ',
'w': 'ʷ',
'y': 'ʸ'
};
var str = 'kenan';
str = str.replace(/[\w]/g, function(c) {
return MAP[c];
});
// => 'ᵏᵉᶰᵃᶰ'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment