Is it possible to make a part of a string invisible? I’m not so familiar with strings, ASCII and all these stuff but I want to hide a part of a string, I don’t want to remove it, I just want to hide it. for example I want to hide “Hello” in “Hello Dear” and I want it to happen in a way that if somebody checks the string it still includes “Hello” but it’s kinda hidden This is what I have in mind (Python)
text = " Dear"
If "Hello" in text:
print ("True") # And I want it to print True
I’ve been trying tools I found on Google and asking Chat GPT, I’ve tried things like Width Joiner, Zero-Width Characters etc… None of it worked. Is this thing even possible?
3