How can I display a character above U+FFFF?

The Guy with The Hat

How can I display a character above U+FFFF? Say I want to show U+1F384. "\u1F384" is interpreted as "\u1F38" followed by the character "4", and gives the error No glyph found for the ? (\u1F38) character. "\uD83C\uDF84" is interpreted as the character "\uD83C" followed by the character "\uDF84", and gives the error

No glyph found for the ? (\uD83C) character
No glyph found for the ? (\uDF84) character

Here is some example code to demonstrate:

PFont font;

void setup()
{
  size(128, 128);
  background(0);
  font = loadFont("Symbola-8.vlw");
  textFont(font, 8);

  fill(255);
  text("\u1F384", 10, 10);

}

void draw()
{

}

As stated by the tag, this is in the language Processing. \U0001F384 gives the error unexpected char: 'U', presumably because processing doesn't support UTF-32 in that format.

It doesn't really matter how it is displayed, the main problem is making a string contain a character whose decimal codepoint is greater than 65,535.

The Guy with The Hat

Unfortunately, there does not appear to be a way to do this.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I display the  (U+F8FF, Apple logo) character on Windows?

From Dev

How can I remove a newline character from the line above in Ruby?

From Dev

How can I display ë character in the url?

From Dev

How can I force annotations to always display above columns?

From Dev

How can I display 4 lines above the matched pattern

From Dev

Identify code points above U+10FFFF

From Dev

Identify code points above U+10FFFF

From Dev

How can I convert character like "\u0096" in python?

From Dev

How I can write at a location FFFF0H in assembly?

From Dev

How can I display Font Awesome fonts in Character Map?

From Dev

how can i rearrange a table display so every th will be above it's specific td's?

From Dev

How can I convert string like "\u94b1" to one real character in C++?

From Dev

How to remove a string that left of character `;` and the contained string `U` and then display it?

From Dev

Can I display validation errors above of an embedded form in Rails?

From Java

How can I add a toolbar above the keyboard?

From Dev

How can i center the tooltip above the image?

From Dev

How can I find the area above the curve

From Dev

I want to display the occurrence of a character in string. How can I improve my code?

From Dev

How do I get image to display above each <li>

From Dev

How can I get (g)Vim to display the character count of the current file?

From Dev

How can I fix this display size issue in Windows 7 Character Map?

From Dev

JavaScript - How do I display a text, character by character

From Dev

How can I display Loops

From Dev

How can i display info?

From Dev

How can I add a search bar above a UICollectionView?

From Dev

How can i place admob ads above a LibGDX view

From Dev

How can I move the icon above text in QComboBox

From Dev

How can I make a button not to move according to the text above it?

From Dev

In Excel how can I sum all the numbers above the current cell?

Related Related

  1. 1

    How can I display the  (U+F8FF, Apple logo) character on Windows?

  2. 2

    How can I remove a newline character from the line above in Ruby?

  3. 3

    How can I display ë character in the url?

  4. 4

    How can I force annotations to always display above columns?

  5. 5

    How can I display 4 lines above the matched pattern

  6. 6

    Identify code points above U+10FFFF

  7. 7

    Identify code points above U+10FFFF

  8. 8

    How can I convert character like "\u0096" in python?

  9. 9

    How I can write at a location FFFF0H in assembly?

  10. 10

    How can I display Font Awesome fonts in Character Map?

  11. 11

    how can i rearrange a table display so every th will be above it's specific td's?

  12. 12

    How can I convert string like "\u94b1" to one real character in C++?

  13. 13

    How to remove a string that left of character `;` and the contained string `U` and then display it?

  14. 14

    Can I display validation errors above of an embedded form in Rails?

  15. 15

    How can I add a toolbar above the keyboard?

  16. 16

    How can i center the tooltip above the image?

  17. 17

    How can I find the area above the curve

  18. 18

    I want to display the occurrence of a character in string. How can I improve my code?

  19. 19

    How do I get image to display above each <li>

  20. 20

    How can I get (g)Vim to display the character count of the current file?

  21. 21

    How can I fix this display size issue in Windows 7 Character Map?

  22. 22

    JavaScript - How do I display a text, character by character

  23. 23

    How can I display Loops

  24. 24

    How can i display info?

  25. 25

    How can I add a search bar above a UICollectionView?

  26. 26

    How can i place admob ads above a LibGDX view

  27. 27

    How can I move the icon above text in QComboBox

  28. 28

    How can I make a button not to move according to the text above it?

  29. 29

    In Excel how can I sum all the numbers above the current cell?

HotTag

Archive