「今日は何の日?」ブックマークレット

あわわわ。文字コードの事を考えてなかった・・・。
よって、この様に修正するです。

javascript:(function(){var theNow = new Date();var theM = theNow.getMonth()+1;var theD = theNow.getDate();var theUrl = 'http://ja.wikipedia.org/wiki/'+theM+'%E6%9C%88'+theD+'%E6%97%A5';location.href=encodeURI(theUrl);})()

javascript:(
    function(){
        var theNow = new Date();
        var theM = theNow.getMonth()+1;
        var theD = theNow.getDate();
        var theUrl = 'http://ja.wikipedia.org/wiki/'+theM+'%E6%9C%88'+theD+'%E6%97%A5';
        location.href=encodeURI(theUrl);
    }
)()