# Unicode characters in Plot

**URL:** https://discourse.julialang.org/t/unicode-characters-in-plot/53997
**Category:** General Usage
**Tags:** turing
**Created:** [January 26, 2021, 4:44pm UTC](https://discourse.julialang.org/t/unicode-characters-in-plot/53997 "2021-01-26T16:44:18Z")
**Posts on this page:** 1
**Showing post:** 8

<div class="post-metadata">

### Author: ![cormullion](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/cormullion/32/49131_2.png) [@cormullion](https://discourse.julialang.org/u/cormullion)
#### Post date: [January 27, 2021, 2:05pm UTC](https://discourse.julialang.org/t/unicode-characters-in-plot/53997/8 "2021-01-27T14:05:22Z")

</div>

```julia
ENV["GKS_ENCODING"]="utf-8"
using Plots
gr()
plot(1:5, 11:15, title = "τ is twice as good as π")

```

and these seem to work as well:

```julia
plot(1:5, 11:15, title = "τ is twice as good as π", fontfamily="Times")
plot(1:5, 11:15, title = "τ is twice as good as π", fontfamily="DejaVu Sans")
plot(1:5, 11:15, title = "τ is twice as good as π", fontfamily="New Century Schoolbook Roman")

```

---

_[View the full topic](https://discourse.julialang.org/t/unicode-characters-in-plot/53997)._
