Search for unicode space 0xA0 content

Discussion related to "Everything" 1.5.
Post Reply
w64bit
Posts: 338
Joined: Wed Jan 09, 2013 9:06 am

Search for unicode space 0xA0 content

Post by w64bit »

How can I search TXT file content for unicode space 0xA0?
I tried (with no result):

Code: Select all

ext:txt hex-content:0xA0
void
Developer
Posts: 19870
Joined: Fri Oct 16, 2009 11:31 pm

Re: Search for unicode space 0xA0 content

Post by void »

Code: Select all

ext:txt diacritics:content:&nbsp:
hex-content: will treat the content as binary.
You will need to match the correct encoding.

diacritics: will force Everything to match 0xa0 only.
(instead of all white space characters)

Character Entities
hex-content:
w64bit
Posts: 338
Joined: Wed Jan 09, 2013 9:06 am

Re: Search for unicode space 0xA0 content

Post by w64bit »

Thank you very much!
Post Reply