2

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.

Zanna
  • 70,465
REDC
  • 31
  • 1
  • 5
  • You can press Shift + Ctrl + u and then followup by the character's hex-unicode-number (for @ it's 0040 while 64 as &#64 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 use Compose + A + T (note A = Shift + a and not just a; like wise for T.) – rusty Mar 19 '14 at 08:55
  • @rusty Why not add your comment as an answer? – Dan Mar 19 '14 at 09:04
  • @Dan, the_Seppi has already answered it.. while for compose key method the link should help. :) – rusty Mar 19 '14 at 09:12

1 Answers1

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