2011-01-10 2 views

Antwort

1

Das ist das gute alte Java, so sollte es auf Android arbeiten. Das "\ u00a9" ist Unicode für das Copyright-Symbol.

import java.io.PrintStream; 
import java.io.UnsupportedEncodingException; 

class foo 
{ 
    public static void main (String args[]) throws UnsupportedEncodingException { 
     String unicodeMessage = 
      "Copyright \u00a9 My Name"; 

     PrintStream out = new PrintStream(System.out, true, "UTF-8"); 
     out.println(unicodeMessage); 
    } 
} 
-1

Hier ist der Et-Zeichen-Code für das Copyright-Symbol:

Copyright © 2011, Stack Overflow 
Verwandte Themen