What is a list of every unicode bracket-like characters (including, for example: {}[]()<>
)? What is a good way to search for unicode characters?
相关问题
- UrlEncodeUnicode and browser navigation errors
- Unicode issue with makemessages --all Django 1.6.2
- Python process a csv file to remove unicode charac
- How to match non-ASCII (German, Spanish, etc.) let
- Unicode Warning when using NLTK stopwords with Tfi
相关文章
- Why is `'↊'.isnumeric()` false?
- How to display unicode in SVG?
- UnicodeEncodeError when saving ImageField containi
- Why is TextView showing the unicode right arrow (\
- C++ (Standard) Exceptions and Unicode
- Is it possible to have SQL Server convert collatio
- Grouping AND and OR conditionals in PostgreSQL
- UTF-16 safe substring in C# .NET
This - obviously - depends on what exactly you plan to do. I build the website http://write-math.com. During my bachelors thesis, I created a symbol classifier (which is now on this website under "classify") which gives users the possibility to draw a symbol and get the LaTeX / unicode result (currently only 369 symbols are supported). This is very nice if you want to typeset a document and search single, specific characters of which you know how they look like / how they are called but not how to write them with LaTeX (or whatever you use for typesetting):
It also has a symbol search feature. It's still in heavy development, but there are 1166 symbols in this database.
For your brackets:
unicode.xml
(from http://www.w3.org/2003/entities/2007doc/#source) is also worth a try.