๐๐๐ฏ๐ ๐ญ๐ผ๐ซ๐๐ค๐ฎ๐ฏ โข ๐ฯ๐ฃึ ๐ฏ๐๐ฉ๐ก โข ๐๐ฒฦ
/manglerMangle some TEXT(returning QUANTITY results) by replacing characters with other unicode characters that look vaguely similar to them.
Example curl:
curl "https://www.jtk.dev/toys/disunicode/api/mangler" -X POST -H "Content-Type: application/json" -d '{"text": "TEXT", "quantity": 3}'Result:
{"text": "TEXT", "mangled": ["๐ป๊ฐ๏ผธ๐ฃ", "๐ง๐ฆ๐๏ผด", "๐ป๊ฐ๐ธ๐"]}TEXT, a random word will be used.QUANTITY, one result will be returned (still in a list)./wordsGet QUANTITY random words (filtered by an elaborate process that guarantees high-quality mangle-able words).
Example curl:
curl "https://www.jtk.dev/toys/disunicode/api/words" -X POST -H "Content-Type: application/json" -d '{"quantity": 4}`Result:
{ "words": ["opsonin", "kapa", "chartreux", "tiresome"] }QUANTITY, one result will be returned (still in a list).