Revision abfd83f9-107c-451e-b16c-770c168c651a - Code Golf Stack Exchange

# [Jelly], 4 bytes

 O^/Ọ

[Try it online!][TIO-kcpxbl20]

Takes input as a list of the two strings, e.g. `['abcde', '01234']`.

### How?

```
O # ord: cast to number (automatically vectorizes)
 ^/ # Reduce by XOR. XOR automatically vectorizes
 and pads as desired to work if the two strings are different lengths
 Ọ # chr: cast to character (vectorizes once again)
```

[Jelly]: https://github.com/DennisMitchell/jelly
[TIO-kcpxbl20]: https://tio.run/##y0rNyan8/98/Tv/h7p7///9HqycmJaekqusoqBsYGhmbqMcCAA "Jelly – Try It Online"

AltStyle によって変換されたページ (->オリジナル) /