How do i decode this string? \xc3\x99\xc3\xa9\xc2\x87-B[x\xc2

Python:

data = "\xc3\x99\xc3\x99\xc3\xa9\xc2\x87-B[x\xc2\x99\xc2\xbe\xc3\xa6\x14Ez\xc2\xab"
udata = data.decode("utf-8")
asciidata = udata.encode("ascii","ignore")

JavaScript:

function decode_utf8(s) {
  return decodeURIComponent(escape(s));
}

Otherwise do more research about decoding UTF-8.

https://gist.github.com/chrisveness/bcb00eb717e6382c5608

There's also an online UTF-8 decoder/encoder:

https://mothereff.in/utf-8

HINT: ÙÙé-B[x¾æEz«