Locales (2)

str_to_upper(c("i", "ı"))
## [1] "I" "I"
str_to_upper(c("i", "ı"), locale = "tr")
## [1] "İ" "I"
str_sort(c("c", "ch", "h"))
## [1] "c"  "ch" "h"
str_sort(c("c", "ch", "h"), locale = "cs")
## [1] "c"  "h"  "ch"