JavaScript
Replace \t with a tab to get the posted character count.
Standard (6364 characters)
eval(eval("'<code here>'".replace(/\t */g,function(s){return"\\"+s.length})))
Version 1.8Arrow function (5549 characters)
eval(eval("'<code here>'".replace(/\t */g,function(s)"\\"+s=>"\\"+s.length)))
Encoder program for both
for(var i = 0, si = prompt("Enter the code."), so = ""; i < si.length; ++i) so += '\t' + Array(+si.charCodeAt(i).toString(8)).join(' '); prompt("Here is the result.", so);