I got bored, so I wrote some code write your image =]
<canvas id="e" width="600" height="200"></canvas>
<script>
var canvas = document.getElementById("e");
var context = canvas.getContext("2d");
context.fillStyle = "blue";
context.font = "bold 16px Arial";
context.fillText("context.fillText(String.fromCharCode(83,110,105,107,111), 100, 100);", 25, 50);
context.fillText("context.fillText(String.fromCharCode(48, 119, 110,122), 100, 115);", 30, 75);
context.fillText("?_?", 50, 90);
context.fillText(String.fromCharCode(83,110,105,107,111), 100, 125);
context.fillText(String.fromCharCode(48, 119, 110,122), 100, 140);
</script>