I have a record SAMPLEID
(with a tab character at the end) in my mySQL database (5.7.30). When fetching it from DB, I get SAMPLEID	
instead of the original value in the record.
I googled 	
string and got to know that it represents a Unicode Hex Character Code representation of a Tab
.
I tried decoding this string using URLDecoder
java class's decode
method. Passing in UTF-8, as encoding. Out of desperation, I tried multiple encoding US-ASCII, ISO-8859-1, UTF-8, UTF-16BE, UTF-16LE, UTF-16.
I also searched for in SO, but didn't found any relevant answer.
But none of them worked.
Thanks in advance!