I wanted to know if there is a way to type an @ symbol by pressing Alt+64 like in Windows. I use both Spanish and English keyboard layouts so I find it useful.
Asked
Active
Viewed 5,202 times
2
1 Answers
5
Like Windows uses the Alt-Combos for ASCII, Ubuntu knows a similar input method for Unicode characters.
To enter the @ sign, which would be Unicode U+40 (hexadecimal!), press and hold Ctrl+Shift and then press U,4,0.
This works the same for all Unicode chars, like U+2744 for a snowflake.

s3lph
- 14,314
- 11
- 59
- 82
-
You may have to release
after typing the U. You can even release – guntbert Mar 19 '14 at 17:53as well, signals the end of your code number. -
-
Shift + Ctrl + u
and then followup by the character's hex-unicode-number (for@
it's0040
while64
as@
is used in html code). This method requires you to remember the unicode numbers. Another way is to enable compose keys. With this enabled, for@
I can useCompose + A + T
(noteA
=Shift + a
and not justa
; like wise forT
.) – rusty Mar 19 '14 at 08:55