1

I dug out an old Acer Aspire E1-771 laptop and put Ubuntu 18.04 LTS amd64 on it (just Ubuntu, no Windows). I now find I can use Alt + X to insert Unicode sequences even though I thought this was impossible. I am transcribing an old chemical document and can enter all the Unicode characters including 5-character ones with the letter F from a standard external keyboard without NumLock and without case sensitivity.

I cannot do this on any other machine running Ubuntu 18 or 19 (I have half a dozen computers).

I'd like to copy this feature to the other machines if I can find out the underlying mechanism.

Any explanations?

Pablo Bianchi
  • 15,657

1 Answers1

2

The standard ways to enter Unicode characters on Linux are

  • Hold Ctrl+⇧ Shift and type u followed by the hex digits. Then release Ctrl+⇧ Shift.
  • Enter Ctrl+⇧ Shift+u, release, then type the hex digits, and press ↵ Enter (or Space or even on some systems, press and release ⇧ Shift or Ctrl).

https://en.wikipedia.org/wiki/Unicode_input#In_X11_(Linux_and_Unix_variants)

Alt+X is supported by many applications though, like MS Word, Wordpad or Libre Office. Therefore I think you've used Libre Office on one system and type on some random textboxes on the other

However using typing the Unicode code points is just for typing rarely used characters. It isn't a good way for typing common characters. You should create a keyboard layout for your own that and access those special characters through AltGr. Even better, you should use LaTeX which is more suitable for scientific documents. You can get any symbols easily with beautiful formatting and don't need to remember the Unicode code points

phuclv
  • 628
  • 1
  • 8
  • 38