Otherwise fullwidth character column names are not aligned correctly:
library(tibble)
x <- c("成交日期", "合同录入日期")
setNames(data_frame(1:3, 4:6), x)
#> Source: local data frame [3 x 2]
#>
#> 成交日期 合同录入日期
#> <int> <int>
#> 1 1 4
#> 2 2 5
#> 3 3 6
nchar(x)
#> [1] 4 6
nchar(x, type = "width")
#> [1] 8 12