Is there any method that I can input Chinese character using GMT.jl?

The following is my code

using GMT

gmtbegin("Figure1", fmt="pdf,png")
    gmtset(PS_CHAR_ENCODING="Standard+", FONT_LABEL="10p,39,black", )
    subplot(grid="2x3", panels_size=(8,6), margins="6p") 
        
        basemap(
        par=(PS_CHAR_ENCODING="Standard+", FONT_ANNOT_PRIMARY="8p,Helvetica,black", FONT_LABEL="10p,39,black"),
        region=[1e-2, 1e4, 1e2, 1e6], figsize=(-8, 6), proj=:logxy,
        xaxis=(annot=1, ticks=3, label=:"电阻率", scale=:pow), 
        yaxis=(annot=1, ticks=3, label=:"频率", scale=:pow),
        panel=(1,1)
        )
       
        text!(["测线"], font="10p,39,black", x=10, y=1e3)

    subplot()
gmtend()

But it cannot display the right Chinese character. Is there anyone can help to fix this problem?