How do I type a 'µ' (micro) symbol?
up vote
1
down vote
favorite
On a German keyboard layout I just need to press Alt Gr+m to get a 'µ' (micro) symbol.
How to do so on a English (US) keyboard?
keyboard keyboard-layout
add a comment |
up vote
1
down vote
favorite
On a German keyboard layout I just need to press Alt Gr+m to get a 'µ' (micro) symbol.
How to do so on a English (US) keyboard?
keyboard keyboard-layout
Do you use it (µ) in any special program like Tex?
– mja
Dec 3 at 9:20
4
The Unicode is "U+03BC". So pressing Ctrl+Shift+U all together, then releasing all keys and typing03bc
should get youμ
in gtk applications. If you have aCompose
key set up on your English (US) keyboard, pressing and releasing theCompose
key and then typingm
followed byu
should do it.
– DK Bose
Dec 3 at 9:22
I don't usetexstudio
but that's a qt-based application and so the Ctrl+Shift+U route won't work. You'll need to use the Compose key route.
– DK Bose
Dec 3 at 10:51
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
On a German keyboard layout I just need to press Alt Gr+m to get a 'µ' (micro) symbol.
How to do so on a English (US) keyboard?
keyboard keyboard-layout
On a German keyboard layout I just need to press Alt Gr+m to get a 'µ' (micro) symbol.
How to do so on a English (US) keyboard?
keyboard keyboard-layout
keyboard keyboard-layout
edited Dec 3 at 10:53
DK Bose
12.5k123983
12.5k123983
asked Dec 3 at 8:33
eDeviser
7922827
7922827
Do you use it (µ) in any special program like Tex?
– mja
Dec 3 at 9:20
4
The Unicode is "U+03BC". So pressing Ctrl+Shift+U all together, then releasing all keys and typing03bc
should get youμ
in gtk applications. If you have aCompose
key set up on your English (US) keyboard, pressing and releasing theCompose
key and then typingm
followed byu
should do it.
– DK Bose
Dec 3 at 9:22
I don't usetexstudio
but that's a qt-based application and so the Ctrl+Shift+U route won't work. You'll need to use the Compose key route.
– DK Bose
Dec 3 at 10:51
add a comment |
Do you use it (µ) in any special program like Tex?
– mja
Dec 3 at 9:20
4
The Unicode is "U+03BC". So pressing Ctrl+Shift+U all together, then releasing all keys and typing03bc
should get youμ
in gtk applications. If you have aCompose
key set up on your English (US) keyboard, pressing and releasing theCompose
key and then typingm
followed byu
should do it.
– DK Bose
Dec 3 at 9:22
I don't usetexstudio
but that's a qt-based application and so the Ctrl+Shift+U route won't work. You'll need to use the Compose key route.
– DK Bose
Dec 3 at 10:51
Do you use it (µ) in any special program like Tex?
– mja
Dec 3 at 9:20
Do you use it (µ) in any special program like Tex?
– mja
Dec 3 at 9:20
4
4
The Unicode is "U+03BC". So pressing Ctrl+Shift+U all together, then releasing all keys and typing
03bc
should get you μ
in gtk applications. If you have a Compose
key set up on your English (US) keyboard, pressing and releasing the Compose
key and then typing m
followed by u
should do it.– DK Bose
Dec 3 at 9:22
The Unicode is "U+03BC". So pressing Ctrl+Shift+U all together, then releasing all keys and typing
03bc
should get you μ
in gtk applications. If you have a Compose
key set up on your English (US) keyboard, pressing and releasing the Compose
key and then typing m
followed by u
should do it.– DK Bose
Dec 3 at 9:22
I don't use
texstudio
but that's a qt-based application and so the Ctrl+Shift+U route won't work. You'll need to use the Compose key route.– DK Bose
Dec 3 at 10:51
I don't use
texstudio
but that's a qt-based application and so the Ctrl+Shift+U route won't work. You'll need to use the Compose key route.– DK Bose
Dec 3 at 10:51
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
While the approach suggested by @DK Bose within the comments is completely correct, another possible solution is to create custom keyboard shortcut that uses xdotool
as command in the following way:
xdotool type --clearmodifiers 'µ'
Source of the idea is provided within the comments of this answer. xdotool
should be available:
sudo apt install xdotool
This shortcut (Ctrl+Shift+M as it is defined above) works also within wine
applications, the only specific thing is that you should press Ctrl+Shift for about 1 second and then press M.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
While the approach suggested by @DK Bose within the comments is completely correct, another possible solution is to create custom keyboard shortcut that uses xdotool
as command in the following way:
xdotool type --clearmodifiers 'µ'
Source of the idea is provided within the comments of this answer. xdotool
should be available:
sudo apt install xdotool
This shortcut (Ctrl+Shift+M as it is defined above) works also within wine
applications, the only specific thing is that you should press Ctrl+Shift for about 1 second and then press M.
add a comment |
up vote
1
down vote
accepted
While the approach suggested by @DK Bose within the comments is completely correct, another possible solution is to create custom keyboard shortcut that uses xdotool
as command in the following way:
xdotool type --clearmodifiers 'µ'
Source of the idea is provided within the comments of this answer. xdotool
should be available:
sudo apt install xdotool
This shortcut (Ctrl+Shift+M as it is defined above) works also within wine
applications, the only specific thing is that you should press Ctrl+Shift for about 1 second and then press M.
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
While the approach suggested by @DK Bose within the comments is completely correct, another possible solution is to create custom keyboard shortcut that uses xdotool
as command in the following way:
xdotool type --clearmodifiers 'µ'
Source of the idea is provided within the comments of this answer. xdotool
should be available:
sudo apt install xdotool
This shortcut (Ctrl+Shift+M as it is defined above) works also within wine
applications, the only specific thing is that you should press Ctrl+Shift for about 1 second and then press M.
While the approach suggested by @DK Bose within the comments is completely correct, another possible solution is to create custom keyboard shortcut that uses xdotool
as command in the following way:
xdotool type --clearmodifiers 'µ'
Source of the idea is provided within the comments of this answer. xdotool
should be available:
sudo apt install xdotool
This shortcut (Ctrl+Shift+M as it is defined above) works also within wine
applications, the only specific thing is that you should press Ctrl+Shift for about 1 second and then press M.
edited Dec 3 at 11:53
answered Dec 3 at 11:42
pa4080
13.2k52461
13.2k52461
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1098090%2fhow-do-i-type-a-%25c2%25b5-micro-symbol%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Do you use it (µ) in any special program like Tex?
– mja
Dec 3 at 9:20
4
The Unicode is "U+03BC". So pressing Ctrl+Shift+U all together, then releasing all keys and typing
03bc
should get youμ
in gtk applications. If you have aCompose
key set up on your English (US) keyboard, pressing and releasing theCompose
key and then typingm
followed byu
should do it.– DK Bose
Dec 3 at 9:22
I don't use
texstudio
but that's a qt-based application and so the Ctrl+Shift+U route won't work. You'll need to use the Compose key route.– DK Bose
Dec 3 at 10:51