Home > Back-end >  Vim editor showing some blue characters but cannot reach it
Vim editor showing some blue characters but cannot reach it

Time:11-26

I was editing some data and when I checked the json file it's showing some blue chars like "<202b>202>" and "b>". I can see them through the vim but I can not change them or even find them. screenshot of vim

When I print the texts in python, also python doesn't see them and just printing the normal texts. Are those chars important? How can I get rid of them? Thank you.

CodePudding user response:

<202b> is how Vim represents the character example

As for getting rid of them… it depends on whether they are here accidentally or purposely.

  • Related