search for: u0092

Displaying 2 results from an estimated 2 matches for "u0092".

Did you mean: 20092
2008 Aug 25
1
Unicode notation \x000
...uot;\u0087", "\\\'a", x, fixed = TRUE) x <- gsub("\u0083", "\\\'E", x, fixed = TRUE) x <- gsub("\u008e", "\\\'e", x, fixed = TRUE) x <- gsub("?", "\\\'I", x, fixed = TRUE) x <- gsub("\u0092", "\\\'i", x, fixed = TRUE) x <- gsub("?", "\\\'O", x, fixed = TRUE) x <- gsub("\u0097", "\\\'o", x, fixed = TRUE) x <- gsub("?", "\\\'U", x, fixed = TRUE) x <- gsub("\u009c", &q...
2013 Mar 20
0
Character Encoding: Why are valid Windows-1252 characters encoded as invalid ISO-8859-1 characters?
...t; > x # Even tho character is invalid in latin1, it renders as if it were the valid windows-1252 character [1] "’" > enc2utf8(x) # Encoding as UTF-8 gives us, not a valid UTF-8 'right quote' (/u2019), but the undefined unicode character 'PRIVATE USE TWO' [1] "\u0092" > enc2native(enc2utf8(x)) # Moving the UTF-8 to back to the native encoding correctly shows that it can't render the 'PRIVATE USE TWO' character in windows-1252 [1] "<U+0092>" --------------------- I think the problem occurs when R decides that the valid 1252...