So I'm trying to understand how a special character normally seen as '<' could be converted to '+ADw-' in UTF-7.
Is there an online tool or a built in library in JavaScript or Java that can do this?
What is the math behind this? I know that UTF-7 uses 7bits to store the character, so I am guessing that the '+ADw-' is just the numerical representation of '<' in ASCII? Meaning, if you converted to '<' to a number, that would be equal to '+ADw-' as a number?
Thanks!