Filename and Extension
February 29, 2024
February 21, 2024
February 13, 2024
January 24, 2024
ROT-X v0.3333
Custom ROT
Make sure length of character set is of even number and consisted of unique symbols.
Character set:
![Check Mark]()
Text to be encoded/decoded:
It's not usual ROT-13.
It seems it supports unicode too.
More info
https://www.rot13.com/
https://en.wikipedia.org/wiki/ROT13
ROT-13 in BrainFuck (Esoteric Programming Language)
Make sure length of character set is of even number and consisted of unique symbols.
Character set:
Text to be encoded/decoded:
It's not usual ROT-13.
It seems it supports unicode too.
More info
https://www.rot13.com/
https://en.wikipedia.org/wiki/ROT13
ROT-13 in BrainFuck (Esoteric Programming Language)
January 14, 2024
December 12, 2023
Hex to Text Converter v0.03
When transforming ASCII hex values in text it follows this rules:
Might add option just for ASCII
Text:
ASCII
Hex values:
- If finds empty spaces removes them
- If not in hex range 0 to F ignores what's not in range.
Text:
ASCII
Hex values:
December 02, 2023
Not in list
function includes(item,list){
for(var i = 0; i < list.length; i++){
if(list[i] === item){
return true;
}
}
return false;
}
function Not_In_List(x){
x = x.split("\n");
var result = [];
var i = 0;
for(; i < x.length; i++){
if(!includes(x[i],result)) result.push(x[i]);
}
return result.join("\n");
}