Home > Back-end >  Romanian Hex Escape Codes?
Romanian Hex Escape Codes?

Time:08-29

I am translating stuff from an application to Romanian (already did German), and I need hex escape codes for ă â ș ț î.

Like the German "ü" is \x81, are there hex escape codes for those Romanian characters?

I couldn't find any after 30 minutes of research.

CodePudding user response:

Code page 850 has "ü" as \x81. That code page does not support ă ș ț î.

Instead use a more modern and comprehensive encoding like Unicode. See also Romanian_alphabet.

ISO/IEC 8859 might work for OP, yet that is not the best way going forward.

CodePudding user response:

You're probably best off using unicode escapes

\u00fc for "ü"

\u0103 for "ă"

\u00e2 for "â"

\u00ee for "î"

\u0163 for "ţ"

  • Related