└─$ cat projects/utf8coder.md
These Python scripts provide command-line tools for URL encoding and decoding with the UTF-8 encoding scheme. utf8encode.py encodes strings using URL encoding, while utf8decode.py decodes URL-encoded strings.
python3 utf8encode.py 'your_string_here'
python3 utf8decode.py 'encoded_string_here'
alias urlencode='python3 /path/to/utf8encode.py' alias urldecode='python3 /path/to/utf8decode.py'
urlencode 'your_string_here'
urldecode 'encoded_string_here'