如何在按位异或中反转我的公式以获得 53 的值?

how to inverse my formula in bitwise xor to get the value of 53?

这是我的十六进制公式。
(53+3C+7-1)xor (45+9B)
这个公式的结果是:75 <-- hex
我的问题是我需要使用另一个公式取回 53

一些伪代码:

int startValue = 0x53
int resultValue = (startValue + 3C + 7 - 1) xor (45 + 9B)
int initialValue = (resultValue xor (45 + 9B)) - 3C - 7 + 1

所以,您只需对相同的 45+9B 进行异或运算并反转其他运算(+ 和 -)