fork download
  1. #!/bin/bash
  2.  
  3. python3 -c 'print("\u200ebe")' |
  4.  
  5. python3 -c '
  6.  
  7. import fileinput
  8.  
  9. for line in fileinput.input():
  10. print(line.replace("\u200e", ""), end="")' |
  11.  
  12. xxd
Success #stdin #stdout 0.04s 9876KB
stdin
Standard input is empty
stdout
00000000: 6265 0a                                  be.