# Help correcting REPL character display

**URL:** https://discourse.julialang.org/t/help-correcting-repl-character-display/45400
**Category:** General Usage
**Tags:** question
**Created:** [August 23, 2020, 3:29am UTC](https://discourse.julialang.org/t/help-correcting-repl-character-display/45400 "2020-08-23T03:29:26Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![tbeason](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/tbeason/32/15898_2.png) [@tbeason](https://discourse.julialang.org/u/tbeason)
#### Post date: [August 23, 2020, 3:29am UTC](https://discourse.julialang.org/t/help-correcting-repl-character-display/45400/1 "2020-08-23T03:29:26Z")

</div>

Does anybody have any suggestions on what to do to get this to display better/correctly? This is what things look like when I’m on my HPC cluster. Unfortunately, that means I likely have limited control to do much to fix it.

This also makes printing of tables (like DataFrames) absolutely horrific to look at.

![Screenshot from 2020-08-22 20-23-25](https://global.discourse-cdn.com/julialang/original/3X/b/c/bcea0109529fba28096942b8ba4eb8053d2dba56.png)

Normally there is just a horizontal line there (in case you forgot).

---

<div class="post-metadata">

### Author: ![Tamas\_Papp](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/tamas_papp/32/25949_2.png) [@Tamas\_Papp](https://discourse.julialang.org/u/Tamas_Papp)
#### Post date: [August 23, 2020, 5:51am UTC](https://discourse.julialang.org/t/help-correcting-repl-character-display/45400/2 "2020-08-23T05:51:37Z")

</div>

It looks like your font may be missing the relevant character. Are you using one with Unicode chars?

What is the output of `locale` in the shell?

In the shell, does the following work?

```nohighlight
$ printf "\\u21D2\n"
⇒

```

---

<div class="post-metadata">

### Author: ![tbeason](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/tbeason/32/15898_2.png) [@tbeason](https://discourse.julialang.org/u/tbeason)
#### Post date: [August 23, 2020, 3:40pm UTC](https://discourse.julialang.org/t/help-correcting-repl-character-display/45400/3 "2020-08-23T15:40:04Z")

</div>

Blank newline when I do that.

Output of `locale`

```julia
LANG=C
LC_CTYPE="C"
LC_NUMERIC="C"
LC_TIME="C"
LC_COLLATE="C"
LC_MONETARY="C"
LC_MESSAGES="C"
LC_PAPER="C"
LC_NAME="C"
LC_ADDRESS="C"
LC_TELEPHONE="C"
LC_MEASUREMENT="C"
LC_IDENTIFICATION="C"
LC_ALL=

```

If I copy the line “Transducers ──────────── v0.4.48” which is `pkg` output from my local machine, and then do (just in bash)

```julia
$ printf "Transducers ──────────── v0.4.48\n"

```

on the cluster it does print correctly, if that helps?

---

<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: [August 23, 2020, 5:51pm UTC](https://discourse.julialang.org/t/help-correcting-repl-character-display/45400/4 "2020-08-23T17:51:38Z")

</div>

Looks like DejaVu Sans Mono? That has good Unicode support. Perhaps something in your setup isn’t asking for the right Unicode glyph and there’s no substitution happening either…

---

<div class="post-metadata">

### Author: ![stevengj](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/stevengj/32/71_2.png) [@stevengj](https://discourse.julialang.org/u/stevengj)
#### Post date: [August 23, 2020, 6:21pm UTC](https://discourse.julialang.org/t/help-correcting-repl-character-display/45400/5 "2020-08-23T18:21:37Z")

</div>

> [@tbeason](#):
>
> Does anybody have any suggestions on what to do to get this to display better/correctly?

What operating system and terminal are you using?

---

<div class="post-metadata">

### Author: ![tbeason](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/tbeason/32/15898_2.png) [@tbeason](https://discourse.julialang.org/u/tbeason)
#### Post date: [August 23, 2020, 6:44pm UTC](https://discourse.julialang.org/t/help-correcting-repl-character-display/45400/6 "2020-08-23T18:44:19Z")

</div>

Output of `cat /etc/os-release` on the cluster.

```julia
NAME="CentOS Linux"
VERSION="7 (Core)"
ID="centos"
ID_LIKE="rhel fedora"
VERSION_ID="7"
PRETTY_NAME="CentOS Linux 7 (Core)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:centos:centos:7"
HOME_URL="https://www.centos.org/"
BUG_REPORT_URL="https://bugs.centos.org/"

CENTOS_MANTISBT_PROJECT="CentOS-7"
CENTOS_MANTISBT_PROJECT_VERSION="7"
REDHAT_SUPPORT_PRODUCT="centos"
REDHAT_SUPPORT_PRODUCT_VERSION="7"

```

Not sure how to answer your second question. I am remoting in via Open OnDemand, which provides remote shell access via the browser.

---

<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: [August 23, 2020, 6:54pm UTC](https://discourse.julialang.org/t/help-correcting-repl-character-display/45400/7 "2020-08-23T18:54:52Z")

</div>

[Problem displaying non-ASCII characters in OOD SSH client - #4 by rotaugenlaubfrosch - Get Help - Open OnDemand](https://discourse.osc.edu/t/problem-displaying-non-ascii-characters-in-ood-ssh-client/870/4) perhaps?

---

<div class="post-metadata">

### Author: ![tbeason](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/tbeason/32/15898_2.png) [@tbeason](https://discourse.julialang.org/u/tbeason)
#### Post date: [August 23, 2020, 8:01pm UTC](https://discourse.julialang.org/t/help-correcting-repl-character-display/45400/8 "2020-08-23T20:01:01Z")

</div>

Yea I guess I hadn’t thought that it could be related to the Open OnDemand stuff. It doesn’t look like it is that specific issue that you linked, but it does seem that it is specific to OOD. I just checked that if I do a regular SSH session from my local machine everything looks fine.
