Top "Codepoint" questions

Get unicode code point of a character using Python

In Python API, is there a way to extract the unicode code point of a single character? Edit: In case …

python python-2.7 unicode codepoint
Convert from hex character to Unicode character in python

The hex string '\xd3' can also be represented as: Ó. The easiest way I've found to get the character …

python unicode hex codepoint
How to output unicode string to RTF (using C#)

I'm trying to output unicode string into RTF format. (using c# and winforms) From wikipedia: If a Unicode escape is …

c# unicode rtf codepoint
What are the most common non-BMP Unicode characters in actual use?

In your experience which Unicode characters, codepoints, ranges outside the BMP (Basic Multilingual Plane) are the most common so far? …

unicode cjk codepoint surrogate-pairs astral-plane
What exactly does String.codePointAt do?

Recently I ran into codePointAt method of String in Java. I found also a few other codePoint methods: codePointBefore, codePointCount …

java string unicode codepoint
Why is 'U+' used to designate a Unicode code point?

Why do Unicode code points appear as U+<codepoint>? For example, U+2202 represents the character ∂. Why not U- (…

unicode codepoint
How to cast a QChar to int

In C++ there is a way to cast a char to int and get the ascii value in return. Is …

qt casting int codepoint qchar
Does Unicode have a defined maximum number of code points?

I have read many articles in order to know what is the maximum number of the Unicode code points, but …

unicode utf-8 utf-16 codepoint utf-32
Difference between codePointAt and charCodeAt

What is the difference between String.prototype.codePointAt() and String.prototype.charCodeAt() in JavaScript? 'A'.codePointAt(); // 65 'A'.charCodeAt(); // 65

javascript string codepoint
Creating a UTF-8 string from hexadecimal code

In C++, it's possible create a UTF-8 string using this kind of notation: "\uD840\uDC50". However this doesn't work in …

php unicode utf-8 hex codepoint