如何在Windows中的浏览器中键入Unicode字符? [英] How to type Unicode Character on Windows in Browser?

查看:200
本文介绍了如何在Windows中的浏览器中键入Unicode字符?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试键入此Unicode字符,当我在Windows上的浏览器(Firefox)中时。

I'm trying to find a way typing this Unicode Character while I am inside my browser (Firefox) on Windows.

字符串: ALT + 1c35

我尝试过的方法:


无论您使用哪种语言,该方法都有效设置,但键入起来最麻烦。

This method works regardless of any of your language settings, but is the most cumbersome to type.

按住Alt键。
按数字键盘上的+(加号)键。
键入十六进制unicode值。
释放Alt键。

Press and hold down the Alt key. Press the + (plus) key on the numeric keypad. Type the hexidecimal unicode value. Release the Alt key.

>,这似乎需要注册表设置。它已经在我的计算机上设置了,但是一些读者报告说这种方法对他们没有
的作用,这可能就是原因。如果您不知道
注册表是什么,请不要尝试此操作。在HKEY_Current_User / Control
面板/输入方法下,将EnableHexNumpad设置为 1。如果必须添加它,则
将类型设置为REG_SZ。

Alas, this appears to require a registry setting. It was already set on my computer, but some readers report that this method didn't work for them, and this is probably why. If you don't know what the registry is, please don't try this. Under HKEY_Current_User/Control Panel/Input Method, set EnableHexNumpad to "1". If you have to add it, set the type to be REG_SZ.

来源

问题:如果您按住 ALT 并按 c ,浏览器跳入浏览器菜单。

Problem: If you hold ALT and press c the browser jumps into the browser menu.

我是每次在论坛等中需要从桌面或网站上复制粘贴此字符时,我都不满意。我已经设置了上面引用中提到的注册表项。

I am not satisfied with copy-paste this character from my desktop or a website everytime I need it in forums, etc.. I already set the registry key mentioned in the quote above.

有没有

推荐答案

http://granjow.net/unicode-input.html
该网站为您提供了与AHK一起使用的AutoHotKey脚本,以及编译的exe版本。

http://granjow.net/unicode-input.html This site gives you an AutoHotKey script for use with AHK, as well as a compiled exe version.

以下是源代码:

; (c) 2015 Simon A. Eugster <simon.eu@gmail.com> Public Domain
; This script listens for Shift+Ctrl+u and then shows a unicode input field.
; The unicode point (e.g. 2013 for an en dash) is then inserted in the active application.

; To run, download AutoHotkey from http://www.autohotkey.com/, save this script
; as e.g. UnicodeInput.ahk, and double-click it.

#SingleInstance force
#Persistent
;Menu, Tray, icon, unicode.ico
Menu, Tray, nostandard ; Put the following menu items on top (default: bottom)
Menu, Tray, add, Info, InfoHandler, -10
Menu, Tray, add
Menu, Tray, standard ; Add default menu items at the bottom
return

InfoHandler:
MsgBox Press Shift+Ctrl+U to get an entry field for unicode points (see decodeunicode.org for a list).`n`nAuthor: Simon A. Eugster <simon.eu@gmail.com> / granjow.net
return

+^u::
InputBox, codepoint, Unicode code point, U+
if not ErrorLevel
    Send {U+%codepoint%}
return

这篇关于如何在Windows中的浏览器中键入Unicode字符?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆