0

Lets say I have a text string such as 'hey' and I have a unicode alphabet like Latin Extended-A from wikipedia. How can I map capital A to its similar A in the unicode one. I think I would need to split the english string and have it in the array but then how would it know which letter that is? Is there a library for this?

chrus54321
  • 125
  • 7

1 Answers1

0

I believe the answer to this question is here: How do I convert special UTF-8 chars to their iso-8859-1 equivalent using javascript?

so essentially:

decodeURIComponent(escape(utfstring))

greg_
  • 26
  • 1
  • I am trying to go for an effect like this website: https://metatags.io/font-generator . Where when you type in an english word and I have a whole bunch of unicode alphabets I convert with – chrus54321 Sep 11 '20 at 19:38
  • Ah, my bad. Yes, you'll likely need a tool for mapping each letter to its corresponding special character. – greg_ Sep 11 '20 at 19:41