Where should I sell exploration data for the most benefit?

Using numeric code points

In Tobu's answer, I believe the keystroke combination on US or UK keyboards would be called Ctrl+Shift as in "Ctrl-Shift-2702 is for the scissors character (✂)".

Personally I find it much easier to remember digraphs.

Digraphs / Compose-Key / Multi-Key

X11 Modmap

The X Window system (X11) provides for what is sometimes called a compose key which allows the entry of special characters by using digraphs.

Keying the combination Shift+AltGr (in that order), releasing these keys, then entering two other keys will produce a special character. Many of these will be the reasonable result of overtyping the character keys, eg.

Shift+AltGr  ~  a -->  ã  (ã in HTML)
Shift+AltGr  /  o -->  ø  (ø in HTML)
Shift+AltGr  o  c -->  ©  (© in HTML)
Shift+AltGr  c  o -->  ǒ  (Ŏ in HTML)

How to

There is an article at linuxquestions.org that describes how to set this up.

first you need to choose which key you want to be the Compose key. Then, open a terminal and enter the command xev. A window called "Event Tester" will pop up. Make sure that it's focused by clicking on it and leaving the mouse cursor in it.

Now press and release the key that you want to become the Compose key. Remember or write down the number after the word "keycode" in the output

Now open the file ".Xmodmap" (the name begins with a dot) in your home directory (create it if it isn't there already) with a text editor and type in the following line, replacing with the number you got in xev.

keycode <keycode number> = Multi_key Now, open the file .xinitrc (it's in your home directory, and it's a hidden file) in a text editor. Insert this line in the beginning of the file:

xmodmap ~/.Xmodmap And next time you log in the Compose key should work! To start using the Compose key right now, enter the command xmodmap ~/.Xmodmap in a terminal.

Wikipedia

The howto article refers to a wikepdia article which says

The compose key is known as "Multi_key" in the X Window System, and must be interpreted by the client program (typically Xlib), not the server. In XFree86 and X.Org Server, many keyboard layouts have a variant that maps Multi_key to some key, usually (on PC keyboards) to either of the Windows keys, or sometimes ⇧ Shift+AltGr[1] or ⇧ Shift+Right-Ctrl. It can also be specified in XkbOptions (for example, "compose:rwin"). Multi_key can also be assigned with the xmodmap(1) utility.


I think it is a firewall issue.

If your operating system is Linux:

Type sudo iptables -L.

If there is anything like

DROP       icmp --  anywhere             localhost

Run:

sudo iptables -D INPUT "n"

where n is the number of your iptable rule you found running iptables -L.