Latin to specialchar table: de- and encrypt stylized names
Posted: 30 Mar 2016, 16:22
I collected all specialchars aining a latin one in a table. This is useful in to ways:

- Players can more easily "encrypt" their name, because they do not have to search for fitting specialchars
- Programmers can implement a function to their software, which makes it possible to search for encrypted name. At the moment no one ever finds a map by a search function, if it mainly consists of specialchars. Using str_replace (which supports arrays), you can decrypt it into latin chars. E.g. my nickname "λsκμÑι" which can't be found easily would turn into "askuri", which is what the seeker typed in. Some ideas for realising the backend: use strtolower(), str_replace(), levenshtein(). Right now I do not have a ready to use code snippet or library.
