So I have one application (let's call it the client) which uses strings with Diacritic/Accents. This application needs to make a request to another application (let's call it web service) using these strings with a diacritic. This other application is developed to receive such strings.
But when the client makes a request to the web service, things do not work as expected. On investigation, I realize the problem is with the diacritics.
Basically, it seems some diacritics which appear the same to the naked eye have different Unicode representation.
For example, what is normally called the acute accent: I realize there is one with octal representation of 01401 https://unicodelookup.com/#01401/1 and another one with octal representation of 01501 https://unicodelookup.com/#01501/1
The one with an octal representation of 01401 is referred to as combining acute accent while the one with 01501 is referred to as combining acute tone mark. So apart from having the different representation they appear to also be semantic different.
And this is the root of the problem I am having. The client creates its strings with diacritics that are called combining acute tone mark while the client expects strings with combining acute accent
So question is, what exactly is the difference between these two? (googling does not seem to turn up some anything helpful here) and how may I "normalize/convert" between these two representations (as I believe this is what needs to be done) in other for the client to be able to make successful calls to the web service.
Update May I mention that strings being sent by the clients are sent from the browser, and thus I can copy the string and look it up using the tool at unicodelookup.com.
And I just did the same lookup, but from a different computer. Before, I was doing the look-up on my Mac. When I did the lookup (by copying from the browser URL and pasting the character into unicodelookup.com), what returning as combining acute tone mark now returns as combining acute accent
Thought I should mention this observation.