Reputation: 24523
A while ago, I saw the text "v3/43/4r" in a document.
I know it comes from "vóór" (the acute accent emphasises in Dutch), and wonder which encoding failure was applied to get this wrong.
Upvotes: 3
Views: 153
Reputation: 98496
Some time ago I've written a program that semi-automatically makes this analysis (maybe I'll publish it some time...) and here it is the result, with a bit of imagination:
And there you are! "vóór" -> "v¾¾r" -> "v3/43/4r".
The first part (ó -> ¾) is the usual corruption of ANSI vs. OEM codepages in the Western Windows versions (in my country ANSI=Windows-1252, OEM=CP850). You can see it easily creating a file with NOTEPAD, writing vóór
and dumping it in a command prompt with type
.
Upvotes: 4