# Can I get the REPL in Juno (or anywhere in Windows) to show Unicode above U+010000?

**URL:** https://discourse.julialang.org/t/can-i-get-the-repl-in-juno-or-anywhere-in-windows-to-show-unicode-above-u-010000/35119
**Category:** Juno
**Created:** [February 25, 2020, 3:19pm UTC](https://discourse.julialang.org/t/can-i-get-the-repl-in-juno-or-anywhere-in-windows-to-show-unicode-above-u-010000/35119 "2020-02-25T15:19:35Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![klaff](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/klaff/32/7637_2.png) [@klaff](https://discourse.julialang.org/u/klaff)
#### Post date: [February 25, 2020, 3:19pm UTC](https://discourse.julialang.org/t/can-i-get-the-repl-in-juno-or-anywhere-in-windows-to-show-unicode-above-u-010000/35119/1 "2020-02-25T15:19:35Z")

</div>

If I use the bold face characters (as used in Unitful and entered with \bfM) such as

```julia
julia> c
'�': Unicode U+01d40c (category Lu: Letter, uppercase)

```

they display correctly in the Workspace window  
 ![Clipboard01](https://global.discourse-cdn.com/julialang/original/3X/3/6/3678c11d8ff20e6c2c6786e3bb5b417fb7002894.png)  
but do not display correctly in the REPL, either in Juno or in a command shell.

I don’t think it is a font issue because it is displayed correctly in the Workspace (although it’s also not displaying here in my browser even in the preview pane, instead giving me a question-mark-in-diamond.

Some googling suggests that Windows console doesn’t support Unicode above the BMP (Basic Multilingual Plane) meaning it only supports characters from 0x0000 up to 0x10000.

Is there a workaround (aside from installing Linux, virtually installing Linux, etc.)?

---

<div class="post-metadata">

### Author: ![pixel27](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/pixel27/32/8902_2.png) [@pixel27](https://discourse.julialang.org/u/pixel27)
#### Post date: [February 25, 2020, 5:39pm UTC](https://discourse.julialang.org/t/can-i-get-the-repl-in-juno-or-anywhere-in-windows-to-show-unicode-above-u-010000/35119/2 "2020-02-25T17:39:31Z")

</div>

I feel like it **is** a font issue. � is the “unknown” or unrepresentable character. Did you change the font used by the editor? Or are you using the default?

---

<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: [February 25, 2020, 6:14pm UTC](https://discourse.julialang.org/t/can-i-get-the-repl-in-juno-or-anywhere-in-windows-to-show-unicode-above-u-010000/35119/3 "2020-02-25T18:14:11Z")

</div>

The issue is that the Windows console does not support fallback fonts. See e.g. [\mscr unicode character display in REPL with Windows - #13 by stevengj](https://discourse.julialang.org/t/mscr-unicode-character-display-in-repl-with-windows/10290/13)

Workaround: use a different terminal. Either mintty or the new Windows Terminal or …

---

<div class="post-metadata">

### Author: ![klaff](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/klaff/32/7637_2.png) [@klaff](https://discourse.julialang.org/u/klaff)
#### Post date: [February 25, 2020, 6:32pm UTC](https://discourse.julialang.org/t/can-i-get-the-repl-in-juno-or-anywhere-in-windows-to-show-unicode-above-u-010000/35119/4 "2020-02-25T18:32:41Z")

</div>

Thanks for that link - I can confirm that julia, run directly from git-bash under Windows does display those characters correctly (as does my phone under Termux!), but if I launch Atom from bash (tried several different ways), it still doesn’t display them correctly in the REPL window.
