CloudflareのEmail Protectionをデコードするコード。Pythonですまんが
```
def cf_decode(encoded: str) -> str:
key = int(encoded[:2], 16)
return "".join(
chr(int(encoded[i:i+2], 16) ^ key)
for i in range(2, len(encoded), 2)
)
```
これに#以降の文字列を渡せばデコードできる。
最終版ではkako.5ch.ioスレ取得に取り入れてくれるとありがたい。