I'm new here. Using Javascript, I have successfully converted a Unicode character into a binary string (i.e., into 1s and 0s). Now, how would I convert that string back into the original Unicode character (UTF-8 I think). I have found a few code examples--but unfortunately the conversions do not work in converting the binary string back into the original character.
Here's the binary string (which is a "thumbs up" emoji):
11110000100111111001000110001101
Thanks, and any code examples you could prove (in pure Javascript) would be most welcome. Thanks.