Guest User

Untitled

a guest
Nov 19th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. ### Linux
  2.  
  3. ```
  4. > x <- 'é'
  5. > Encoding(x)
  6. [1] "UTF-8"
  7. > charToRaw(x)
  8. [1] c3 a9
  9. ```
  10.  
  11. ### Windows
  12.  
  13. ```
  14. > x <- 'é'
  15. > Encoding(x)
  16. [1] "latin1"
  17. > charToRaw(x)
  18. [1] e9
  19. ```
Add Comment
Please, Sign In to add comment