[[HashCat]]
Force internal wordlist encoding from X
```bash
hashcat -a 0 -m #type hash.txt dict.txt --encoding-from=utf-8
```
Force internal wordlist encoding to X
```bash
hashcat -a 0 -m #type hash.txt dict.txt --encoding-to=iso-8859-15
```
ICONV
Convert wordlist into language specific encoding
```bash
iconv -f <old_encode> -t <new_encode> < dict.txt | sponge dict.txt.enc
```
[[Home]]
#howto #hashcat #iconv