# No superscript q in REPL?

**URL:** https://discourse.julialang.org/t/no-superscript-q-in-repl/127899
**Category:** General Usage
**Tags:** question, unicode
**Created:** [April 9, 2025, 11:55pm UTC](https://discourse.julialang.org/t/no-superscript-q-in-repl/127899 "2025-04-09T23:55:09Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![leespen1](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/leespen1/32/221928_2.png) [@leespen1](https://discourse.julialang.org/u/leespen1)
#### Post date: [April 9, 2025, 11:55pm UTC](https://discourse.julialang.org/t/no-superscript-q-in-repl/127899/1 "2025-04-09T23:55:09Z")

</div>

I noticed that every lowercase letter in the English alphabet can be used as a super script, except q. E.g. typing

```julia
julia> \^abcdefghijklmnop

```

and then pressing _tab_ gives

```julia
julia> ᵃᵇᶜᵈᵉᶠᵍʰⁱʲᵏˡᵐⁿᵒᵖ

```

I can do the same with the letters r-z:

```julia
julia> \^rstuvwxyz
julia> ʳˢᵗᵘᵛʷˣʸᶻ

```

But I can’t convert `\^q` via tab completion. The character appears fine when I copy and paste it from another source ([Unicode subscripts and superscripts - Wikipedia](https://en.wikipedia.org/wiki/Unicode_subscripts_and_superscripts)). Is there a reason why superscripted q is not supported? It seems like a weird exclusion to me, when every other lowercase English letter is supported.

(I am using Julia Version 1.11.4)

---

<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: [April 10, 2025, 1:36am UTC](https://discourse.julialang.org/t/no-superscript-q-in-repl/127899/2 "2025-04-10T01:36:19Z")

</div>

That character famously does not exist in Unicode.

---

<div class="post-metadata">

### Author: ![leespen1](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/leespen1/32/221928_2.png) [@leespen1](https://discourse.julialang.org/u/leespen1)
#### Post date: [April 10, 2025, 2:55am UTC](https://discourse.julialang.org/t/no-superscript-q-in-repl/127899/3 "2025-04-10T02:55:16Z")

</div>

Wow, I had no idea. I can’t believe that we don’t have superscript q in unicode when we have a coral emoji.

Thanks!

---

<div class="post-metadata">

### Author: ![jar1](https://avatars.discourse-cdn.com/v4/letter/j/c0e974/32.png) [@jar1](https://discourse.julialang.org/u/jar1)
#### Post date: [April 10, 2025, 3:12am UTC](https://discourse.julialang.org/t/no-superscript-q-in-repl/127899/4 "2025-04-10T03:12:41Z")

</div>

What about

```julia
julia> '𐞥'
'𐞥': Unicode U+107A5 (category Lm: Letter, modifier)

```

?

---

<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: [April 10, 2025, 12:42pm UTC](https://discourse.julialang.org/t/no-superscript-q-in-repl/127899/5 "2025-04-10T12:42:21Z")

</div>

Wow, apparently [U+107A5](https://codepoints.net/U+107A5?lang=en) and [U+a7f4](https://www.fileformat.info/info/unicode/char/a7f4/index.htm) were finally added in Unicode 14? I don’t seem to have any fonts that support them, though.

---

<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: [April 10, 2025, 2:47pm UTC](https://discourse.julialang.org/t/no-superscript-q-in-repl/127899/6 "2025-04-10T14:47:55Z")

</div>

If you’re hunting glyphs in the remote corners of the Unicode jungle, probably the best fonts to have installed are:

- Fairfax HD [KreativeKorp/OpenRelay on Github](https://github.com/kreativekorp/open-relay)

- Iosevka [Iosevka on Github](https://github.com/be5invis/Iosevka)

- JuliaMono [JuliaMono on Github](https://github.com/cormullion/juliamono)

I think all are frequently updated, and will accept requests via issues and PRs. 😉

---

<div class="post-metadata">

### Author: ![danielwe](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/danielwe/32/35657_2.png) [@danielwe](https://discourse.julialang.org/u/danielwe)
#### Post date: [April 10, 2025, 6:22pm UTC](https://discourse.julialang.org/t/no-superscript-q-in-repl/127899/7 "2025-04-10T18:22:05Z")

</div>

Current status:

- Fairfax HD has both the lowercase (107A5) and uppercase (A7F4) version
- Iosevka has neither
- JuliaMono has the uppercase version and an open issue for the lowercase: [Missing Superscript Characters from Latin Extended Blocks · Issue #176 · cormullion/juliamono · GitHub](https://github.com/cormullion/juliamono/issues/176)
