How to turn a variable into a mp3 sound object

first of all im new in unity
my question is:
change a variable into a sound object

I have a variable and this variable has all bytes of a mp3 file so i can be able to turn this string into a mp3 file again and play it in game?

can someone explain?

i mean i have a path that contains the mp3 file… i want to play it but i cant find anything in web so i decided to get all the value of mp3 file and stack it in a variable… i dont know what to do

Don’t load the file into a string (that doesn’t even make sense, since it is binary data not text). You can try to load it using the WWW class, but whether this will work depends on what system you’re on. If you have any control over the file, you’d be better off switching to .ogg, which is supported everywhere. See this answer for example.

woah thanks a lot ^^