Simple Email Hex Encoding
Nov 18
2008
2008
Comments Off
#!/usr/bin/python import re hex_encode = lambda x: ("&#%i;" * len(x)) % (tuple(map(ord, re.findall('.', x)))) # hex_encode("root@example.com") =>; # root@vidul.com