I used to change hexString like 0B81040000001E to C4EEAAAAHg==
I used web site http://tomeko.net/online_tools/hex_to_base64.php
but problem is that I want to implement this change process in my angular app
many people says I should use btoa(0B81040000001E) to change hexstring to base64. but when I tried, result came to different like "MEI4MTA0MDAwMDAwMUU=" Not "C4EEAAAAHg=="
did I use something wrong? value "C4EEAAAAHg==" is the one that I think I should get.
C4EEAAAAHg== is not base 64 that I know?
How can I change hexstring data to base 64...?