Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /*
  2.  *  Copyright (c) 2012 [iPs]TeaM
  3.  *  Bruno da Silva (email@brunodasilva.com)
  4.  *  Transformar nĂºmero em caractere.
  5.  *
  6.  * www.brunodasilva.com
  7.  * www.ips-team.forumeiros.com
  8. */
  9.  
  10. function intToChar(c) {
  11.     return String.fromCharCode(c);
  12. }