Displaying 1 result from an estimated 1 matches for "u0087".
Did you mean:
10087
2008 Aug 25
1
Unicode notation \x000
...sub("?", "\\ss{}", x, fixed = TRUE)
# Espa?ol
x <- gsub("\u0084", "\\~N", x, fixed = TRUE)
x <- gsub("\u0096", "\\~n", x, fixed = TRUE)
x <- gsub("?", "\\\'A", x, fixed = TRUE)
x <- gsub("\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"...