/ Published in: Python
                    
                                        
Codificador de una string a su codigo en Base64, basado en el codigo del TFHA X y traducido por mi.
                
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
import math
############################
############################
#### #### #### ####
#### #### #### ####
#### #### #### ####
#### #### ####
#### #### ####
#### #### ############
#### #### #### ####
#### #### #### ####
############################
############################
print "Habbo Base64 Encoder.\nPor Cesar Vasquez C (AKA Heellxz)\n"
a = raw_input(">>Ingresa String: ")
i = len(a)
encodeB64 = chr(int(math.floor((i/64) + 64))) + chr(int((i%64)+64))
print "Base64: " + encodeB64
Comments
 Subscribe to comments
                    Subscribe to comments
                
                