JSFiddle - React, Tailwind, and code Playground
by bombo
HTML
<script src="http://jquery-json.googlecode.com/files/jquery.json-2.3.js"></script>
Result: <span id="text"></span><button id="show">Show</button>
JavaScript
var text = 'pbi\\\\nex3zug';
$('#show').live('click', function () {
$('#text').text(text);
});