I have to display base64 pdf in new tab. I am using below code
var windo = window.open(\"\", \"\");
var objbuilder = \'\';
objbuilder += (\'
It should work with Chrome you can use
I've faces same issue with IE: it's impossible to display a pdf with a base64 string.
I had to generate temporary files on the server for display them with IE he only display existing file by using a path.
You still can use JS library to display your pdf like PDF.js.